sapor 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Area Class Diagram.dia +0 -0
- data/Area Class Diagram.png +0 -0
- data/Class Diagram.dia +0 -0
- data/Class Diagram.png +0 -0
- data/Example-Catalonia.md +361 -0
- data/Example-Flanders.md +486 -0
- data/Example-Greece.md +25 -0
- data/Example-Oslo.md +678 -0
- data/Example-UnitedKingdom-Referendum.md +132 -0
- data/Examples.md +15 -0
- data/LICENSE +674 -0
- data/README.md +103 -0
- data/Rakefile +18 -0
- data/Technical Documentation.md +14 -0
- data/bin/create_installation_package.sh +49 -0
- data/bin/install.sh +45 -0
- data/bin/sapor.rb +24 -0
- data/bin/sapor.sh +106 -0
- data/data/hu/hungary-2014.txt +1680 -0
- data/data/hu/hungary_2014_screen_scraper.rb +48 -0
- data/data/hu/hungary_2014_to_psv.rb +80 -0
- data/data/hu/index-2014.txt +106 -0
- data/data/pl/2015-gl-lis-okr.csv +42 -0
- data/data/pl/poland_2015_to_psv.rb +79 -0
- data/data/pl/poland_2015_to_psv_with_ko_and_rsw.rb +94 -0
- data/data/pl/poland_2015_to_psv_with_ko_konf_kp_l_and_zp.rb +100 -0
- data/data/pl/poland_2015_to_psv_with_ko_sld_and_wi.rb +92 -0
- data/data/pl/poland_2015_to_psv_with_sld.rb +84 -0
- data/data/pl/poland_2015_to_psv_with_sld_and_wi.rb +85 -0
- data/data/uk/inject_ukip_2015_as_brexit_2019_in_2017.rb +54 -0
- data/data/uk/united_kingdom_2015.txt +651 -0
- data/data/uk/united_kingdom_2015_to_psv.rb +104 -0
- data/data/uk/united_kingdom_2017.txt +651 -0
- data/data/uk/united_kingdom_2017_to_psv.rb +104 -0
- data/data/uk/united_kingdom_2017_to_psv_with_brexit_and_chuk.rb +113 -0
- data/data/uk/united_kingdom_2017_to_psv_with_tig.rb +111 -0
- data/lib/sapor.rb +150 -0
- data/lib/sapor/binomials_cache.rb +45 -0
- data/lib/sapor/combinations_distribution.rb +222 -0
- data/lib/sapor/denominators.rb +67 -0
- data/lib/sapor/dichotomies.rb +138 -0
- data/lib/sapor/dichotomy.rb +164 -0
- data/lib/sapor/first_past_the_post.rb +82 -0
- data/lib/sapor/largest_remainder.rb +118 -0
- data/lib/sapor/log4r_logger.rb +49 -0
- data/lib/sapor/log_facade.rb +40 -0
- data/lib/sapor/multi_district_leveled_proportional.rb +64 -0
- data/lib/sapor/multi_district_proportional.rb +123 -0
- data/lib/sapor/multi_district_variable_threshold_proportional.rb +128 -0
- data/lib/sapor/number_formatter.rb +45 -0
- data/lib/sapor/options.rb +73 -0
- data/lib/sapor/poll.rb +286 -0
- data/lib/sapor/polychotomy.rb +200 -0
- data/lib/sapor/pseudorandom_multirange_enumerator.rb +87 -0
- data/lib/sapor/referendum_polychotomy.rb +165 -0
- data/lib/sapor/regional_data/area.rb +82 -0
- data/lib/sapor/regional_data/austria.rb +84 -0
- data/lib/sapor/regional_data/belgium-brussels-2014.psv +46 -0
- data/lib/sapor/regional_data/belgium-brussels-20190526.psv +33 -0
- data/lib/sapor/regional_data/belgium-flanders-2014.psv +80 -0
- data/lib/sapor/regional_data/belgium-flanders-20190526.psv +74 -0
- data/lib/sapor/regional_data/belgium-wallonia-2014.psv +114 -0
- data/lib/sapor/regional_data/belgium-wallonia-20190526.psv +93 -0
- data/lib/sapor/regional_data/belgium.rb +97 -0
- data/lib/sapor/regional_data/belgium_brussels.rb +62 -0
- data/lib/sapor/regional_data/belgium_flanders.rb +64 -0
- data/lib/sapor/regional_data/belgium_wallonia.rb +63 -0
- data/lib/sapor/regional_data/catalonia-2012-2015.psv +100 -0
- data/lib/sapor/regional_data/catalonia-2012.psv +87 -0
- data/lib/sapor/regional_data/catalonia-2015-jxcat.psv +68 -0
- data/lib/sapor/regional_data/catalonia-2015-no-jxsi.psv +68 -0
- data/lib/sapor/regional_data/catalonia-2015.psv +63 -0
- data/lib/sapor/regional_data/catalonia-jxcat.rb +109 -0
- data/lib/sapor/regional_data/catalonia-no-jxsi.rb +96 -0
- data/lib/sapor/regional_data/catalonia.rb +96 -0
- data/lib/sapor/regional_data/denmark-20150618-with-e-and-p.psv +164 -0
- data/lib/sapor/regional_data/denmark-20150618-with-e.psv +153 -0
- data/lib/sapor/regional_data/denmark-20150618-with-p.psv +153 -0
- data/lib/sapor/regional_data/denmark-20150618.psv +142 -0
- data/lib/sapor/regional_data/denmark.rb +128 -0
- data/lib/sapor/regional_data/denmark_with_e.rb +128 -0
- data/lib/sapor/regional_data/denmark_with_e_and_p.rb +128 -0
- data/lib/sapor/regional_data/denmark_with_p.rb +128 -0
- data/lib/sapor/regional_data/estonia.rb +88 -0
- data/lib/sapor/regional_data/european-union-great-britain-20140522-brexit-chuk.psv +172 -0
- data/lib/sapor/regional_data/european-union-great-britain-20140522.psv +146 -0
- data/lib/sapor/regional_data/european-union-great-britain-20190523.psv +141 -0
- data/lib/sapor/regional_data/european-union-ireland-2014-ia-ri-sd.psv +64 -0
- data/lib/sapor/regional_data/european-union-ireland-2014-ia-sd.psv +60 -0
- data/lib/sapor/regional_data/european-union-ireland-2014-ia.psv +56 -0
- data/lib/sapor/regional_data/european-union-ireland-2014-sd.psv +56 -0
- data/lib/sapor/regional_data/european-union-ireland-2014.psv +50 -0
- data/lib/sapor/regional_data/european-union-ireland-20190524-ia.psv +58 -0
- data/lib/sapor/regional_data/european-union-ireland-20190524.psv +52 -0
- data/lib/sapor/regional_data/european_union_27_austria.rb +76 -0
- data/lib/sapor/regional_data/european_union_27_croatia.rb +81 -0
- data/lib/sapor/regional_data/european_union_27_denmark.rb +77 -0
- data/lib/sapor/regional_data/european_union_27_estonia.rb +74 -0
- data/lib/sapor/regional_data/european_union_27_finland.rb +74 -0
- data/lib/sapor/regional_data/european_union_27_ireland.rb +96 -0
- data/lib/sapor/regional_data/european_union_27_ireland_with_ia.rb +97 -0
- data/lib/sapor/regional_data/european_union_27_italy.rb +84 -0
- data/lib/sapor/regional_data/european_union_27_netherlands.rb +81 -0
- data/lib/sapor/regional_data/european_union_27_poland.rb +84 -0
- data/lib/sapor/regional_data/european_union_27_romania.rb +78 -0
- data/lib/sapor/regional_data/european_union_27_slovakia.rb +80 -0
- data/lib/sapor/regional_data/european_union_27_spain.rb +82 -0
- data/lib/sapor/regional_data/european_union_27_sweden.rb +76 -0
- data/lib/sapor/regional_data/european_union_austria.rb +76 -0
- data/lib/sapor/regional_data/european_union_bulgaria.rb +82 -0
- data/lib/sapor/regional_data/european_union_croatia.rb +81 -0
- data/lib/sapor/regional_data/european_union_cyprus.rb +72 -0
- data/lib/sapor/regional_data/european_union_czech_republic.rb +82 -0
- data/lib/sapor/regional_data/european_union_denmark.rb +77 -0
- data/lib/sapor/regional_data/european_union_estonia.rb +74 -0
- data/lib/sapor/regional_data/european_union_finland.rb +74 -0
- data/lib/sapor/regional_data/european_union_flanders.rb +74 -0
- data/lib/sapor/regional_data/european_union_france.rb +84 -0
- data/lib/sapor/regional_data/european_union_france_2019.rb +84 -0
- data/lib/sapor/regional_data/european_union_french_community_of_belgium.rb +73 -0
- data/lib/sapor/regional_data/european_union_germany.rb +86 -0
- data/lib/sapor/regional_data/european_union_great_britain.rb +98 -0
- data/lib/sapor/regional_data/european_union_greece.rb +77 -0
- data/lib/sapor/regional_data/european_union_hungary.rb +76 -0
- data/lib/sapor/regional_data/european_union_ireland.rb +96 -0
- data/lib/sapor/regional_data/european_union_ireland_with_ia.rb +97 -0
- data/lib/sapor/regional_data/european_union_italy.rb +84 -0
- data/lib/sapor/regional_data/european_union_latvia.rb +81 -0
- data/lib/sapor/regional_data/european_union_lithuania.rb +80 -0
- data/lib/sapor/regional_data/european_union_luxembourg.rb +75 -0
- data/lib/sapor/regional_data/european_union_malta.rb +71 -0
- data/lib/sapor/regional_data/european_union_netherlands.rb +81 -0
- data/lib/sapor/regional_data/european_union_northern_ireland.rb +75 -0
- data/lib/sapor/regional_data/european_union_poland.rb +84 -0
- data/lib/sapor/regional_data/european_union_portugal.rb +75 -0
- data/lib/sapor/regional_data/european_union_romania.rb +78 -0
- data/lib/sapor/regional_data/european_union_slovakia.rb +81 -0
- data/lib/sapor/regional_data/european_union_slovenia.rb +85 -0
- data/lib/sapor/regional_data/european_union_spain.rb +82 -0
- data/lib/sapor/regional_data/european_union_sweden.rb +76 -0
- data/lib/sapor/regional_data/finland-20150419-with-sin.psv +224 -0
- data/lib/sapor/regional_data/finland-20150419.psv +212 -0
- data/lib/sapor/regional_data/finland.rb +107 -0
- data/lib/sapor/regional_data/finland_with_sin.rb +107 -0
- data/lib/sapor/regional_data/flanders-2014.psv +96 -0
- data/lib/sapor/regional_data/flanders-20190526.psv +87 -0
- data/lib/sapor/regional_data/flanders.rb +115 -0
- data/lib/sapor/regional_data/france.rb +38 -0
- data/lib/sapor/regional_data/greece.rb +92 -0
- data/lib/sapor/regional_data/hungary-2014.psv +2104 -0
- data/lib/sapor/regional_data/hungary.rb +116 -0
- data/lib/sapor/regional_data/iceland-20161029-midflokkurinn.psv +94 -0
- data/lib/sapor/regional_data/iceland-20161029.psv +88 -0
- data/lib/sapor/regional_data/iceland-20171028.psv +85 -0
- data/lib/sapor/regional_data/iceland.rb +133 -0
- data/lib/sapor/regional_data/latvia-20141004-kpv-p-par.psv +109 -0
- data/lib/sapor/regional_data/latvia-20141004-kpv-par.psv +103 -0
- data/lib/sapor/regional_data/latvia-20141004-kpv.psv +97 -0
- data/lib/sapor/regional_data/latvia-20141004.psv +89 -0
- data/lib/sapor/regional_data/latvia.rb +112 -0
- data/lib/sapor/regional_data/latvia_kpv.rb +112 -0
- data/lib/sapor/regional_data/latvia_kpv_p_par.rb +112 -0
- data/lib/sapor/regional_data/latvia_kpv_par.rb +112 -0
- data/lib/sapor/regional_data/luxembourg-20131020.psv +76 -0
- data/lib/sapor/regional_data/luxembourg.rb +82 -0
- data/lib/sapor/regional_data/netherlands.rb +108 -0
- data/lib/sapor/regional_data/norway.rb +425 -0
- data/lib/sapor/regional_data/norwegian_municipality.rb +68 -0
- data/lib/sapor/regional_data/poland-20151025-with-ko-and-l-without-n-po-r-and-zl.psv +321 -0
- data/lib/sapor/regional_data/poland-20151025-with-ko-konf-kp-l-and-zp-without-k-k15-n-pis-po-psl-r-and-zl.psv +280 -0
- data/lib/sapor/regional_data/poland-20151025-with-ko-sld-and-wi-without-n-po-and-zl.psv +403 -0
- data/lib/sapor/regional_data/poland-20151025-with-sld-and-wi-without-zl.psv +444 -0
- data/lib/sapor/regional_data/poland-20151025-with-sld-without-zl.psv +403 -0
- data/lib/sapor/regional_data/poland-20151025.psv +403 -0
- data/lib/sapor/regional_data/poland.rb +125 -0
- data/lib/sapor/regional_data/poland_with_ko_and_l_without_n_po_r_and_zl.rb +122 -0
- data/lib/sapor/regional_data/poland_with_ko_konf_kp_l_and_zp_without_k_k15_n_pis_po_psl_r_and_zl.rb +123 -0
- data/lib/sapor/regional_data/poland_with_ko_sld_and_wi_without_n_po_and_zl.rb +125 -0
- data/lib/sapor/regional_data/poland_with_sld_and_wi_without_zl.rb +126 -0
- data/lib/sapor/regional_data/poland_with_sld_without_zl.rb +126 -0
- data/lib/sapor/regional_data/portugal-20151004-with-a-and-ch-without-paf.psv +438 -0
- data/lib/sapor/regional_data/portugal-20151004-with-a-and-il-without-paf.psv +438 -0
- data/lib/sapor/regional_data/portugal-20151004-with-a-ch-and-il-without-paf.psv +461 -0
- data/lib/sapor/regional_data/portugal-20151004-with-a-without-paf.psv +415 -0
- data/lib/sapor/regional_data/portugal-20151004-with-ch-and-il-without-paf.psv +438 -0
- data/lib/sapor/regional_data/portugal-20151004-without-paf.psv +392 -0
- data/lib/sapor/regional_data/portugal-20151004.psv +370 -0
- data/lib/sapor/regional_data/portugal.rb +101 -0
- data/lib/sapor/regional_data/portugal_with_a_and_ch_without_paf.rb +92 -0
- data/lib/sapor/regional_data/portugal_with_a_and_il_without_paf.rb +92 -0
- data/lib/sapor/regional_data/portugal_with_a_ch_and_il_without_paf.rb +92 -0
- data/lib/sapor/regional_data/portugal_with_a_without_paf.rb +92 -0
- data/lib/sapor/regional_data/portugal_with_ch_and_il_without_paf.rb +92 -0
- data/lib/sapor/regional_data/portugal_without_paf.rb +92 -0
- data/lib/sapor/regional_data/slovakia.rb +81 -0
- data/lib/sapor/regional_data/slovenia.rb +114 -0
- data/lib/sapor/regional_data/spain-20160626.psv +619 -0
- data/lib/sapor/regional_data/spain.rb +136 -0
- data/lib/sapor/regional_data/sweden.rb +92 -0
- data/lib/sapor/regional_data/sweden_20140914.rb +89 -0
- data/lib/sapor/regional_data/united_kingdom-2015.psv +4358 -0
- data/lib/sapor/regional_data/united_kingdom-20170608-brexit-chuk.psv +5154 -0
- data/lib/sapor/regional_data/united_kingdom-20170608-brexit.psv +4521 -0
- data/lib/sapor/regional_data/united_kingdom-20170608-tig.psv +4529 -0
- data/lib/sapor/regional_data/united_kingdom-20170608.psv +3894 -0
- data/lib/sapor/regional_data/united_kingdom.rb +94 -0
- data/lib/sapor/regional_data/united_kingdom_with_brexit.rb +110 -0
- data/lib/sapor/regional_data/united_kingdom_with_brexit_and_chuk.rb +111 -0
- data/lib/sapor/regional_data/united_kingdom_with_tig.rb +111 -0
- data/lib/sapor/regional_data/utopia.rb +66 -0
- data/lib/sapor/regional_data/wallonia-2014.psv +101 -0
- data/lib/sapor/regional_data/wallonia-20190526.psv +88 -0
- data/lib/sapor/regional_data/wallonia.rb +112 -0
- data/lib/sapor/representatives_polychotomy.rb +338 -0
- data/lib/sapor/single_district_proportional.rb +75 -0
- data/sapor.gemspec +35 -0
- data/spec/integration/area_spec.rb +28 -0
- data/spec/integration/poll_spec.rb +112 -0
- data/spec/integration/sample.poll +8 -0
- data/spec/spec_helper.rb +31 -0
- data/spec/unit/area_spec.rb +115 -0
- data/spec/unit/austria_spec.rb +76 -0
- data/spec/unit/belgium_brussels_spec.rb +58 -0
- data/spec/unit/belgium_flanders_spec.rb +62 -0
- data/spec/unit/belgium_spec.rb +26 -0
- data/spec/unit/belgium_wallonia_spec.rb +65 -0
- data/spec/unit/binomials_cache_spec.rb +34 -0
- data/spec/unit/catalonia_spec.rb +74 -0
- data/spec/unit/combinations_distribution_spec.rb +241 -0
- data/spec/unit/denmark_spec.rb +56 -0
- data/spec/unit/denmark_with_e_and_p_spec.rb +58 -0
- data/spec/unit/denmark_with_e_spec.rb +57 -0
- data/spec/unit/denmark_with_p_spec.rb +57 -0
- data/spec/unit/denominators_spec.rb +40 -0
- data/spec/unit/dichotomies_spec.rb +154 -0
- data/spec/unit/dichotomy_spec.rb +320 -0
- data/spec/unit/estonia_spec.rb +65 -0
- data/spec/unit/european_union_27_austria_spec.rb +61 -0
- data/spec/unit/european_union_27_croatia_spec.rb +60 -0
- data/spec/unit/european_union_27_denmark_spec.rb +62 -0
- data/spec/unit/european_union_27_estonia_spec.rb +94 -0
- data/spec/unit/european_union_27_finland_spec.rb +75 -0
- data/spec/unit/european_union_27_ireland_spec.rb +72 -0
- data/spec/unit/european_union_27_ireland_with_ia_spec.rb +74 -0
- data/spec/unit/european_union_27_italy_spec.rb +69 -0
- data/spec/unit/european_union_27_netherlands_spec.rb +81 -0
- data/spec/unit/european_union_27_poland_spec.rb +69 -0
- data/spec/unit/european_union_27_romania_spec.rb +67 -0
- data/spec/unit/european_union_27_slovakia_spec.rb +111 -0
- data/spec/unit/european_union_27_spain_spec.rb +130 -0
- data/spec/unit/european_union_27_sweden_spec.rb +89 -0
- data/spec/unit/european_union_austria_spec.rb +61 -0
- data/spec/unit/european_union_bulgaria_spec.rb +97 -0
- data/spec/unit/european_union_croatia_spec.rb +59 -0
- data/spec/unit/european_union_cyprus_spec.rb +65 -0
- data/spec/unit/european_union_czech_republic_spec.rb +125 -0
- data/spec/unit/european_union_denmark_spec.rb +61 -0
- data/spec/unit/european_union_estonia_spec.rb +93 -0
- data/spec/unit/european_union_finland_spec.rb +75 -0
- data/spec/unit/european_union_flanders_spec.rb +56 -0
- data/spec/unit/european_union_france_2019_spec.rb +73 -0
- data/spec/unit/european_union_france_spec.rb +73 -0
- data/spec/unit/european_union_french_community_of_belgium_spec.rb +61 -0
- data/spec/unit/european_union_germany_spec.rb +90 -0
- data/spec/unit/european_union_great_britain_spec.rb +87 -0
- data/spec/unit/european_union_greece_spec.rb +148 -0
- data/spec/unit/european_union_hungary_spec.rb +57 -0
- data/spec/unit/european_union_ireland_spec.rb +72 -0
- data/spec/unit/european_union_ireland_with_ia_spec.rb +74 -0
- data/spec/unit/european_union_italy_spec.rb +69 -0
- data/spec/unit/european_union_latvia_spec.rb +76 -0
- data/spec/unit/european_union_lithuania_spec.rb +68 -0
- data/spec/unit/european_union_luxembourg_spec.rb +63 -0
- data/spec/unit/european_union_malta_spec.rb +60 -0
- data/spec/unit/european_union_netherlands_spec.rb +81 -0
- data/spec/unit/european_union_northern_ireland_spec.rb +66 -0
- data/spec/unit/european_union_poland_spec.rb +69 -0
- data/spec/unit/european_union_portugal_spec.rb +77 -0
- data/spec/unit/european_union_romania_spec.rb +67 -0
- data/spec/unit/european_union_slovakia_spec.rb +111 -0
- data/spec/unit/european_union_slovenia_spec.rb +77 -0
- data/spec/unit/european_union_spain_spec.rb +129 -0
- data/spec/unit/european_union_sweden_spec.rb +89 -0
- data/spec/unit/finland_spec.rb +65 -0
- data/spec/unit/finland_with_sin_spec.rb +67 -0
- data/spec/unit/first_past_the_post_spec.rb +54 -0
- data/spec/unit/flanders_spec.rb +70 -0
- data/spec/unit/france_spec.rb +32 -0
- data/spec/unit/greece_spec.rb +118 -0
- data/spec/unit/hungary_spec.rb +132 -0
- data/spec/unit/iceland_spec.rb +57 -0
- data/spec/unit/largest_remainder_spec.rb +79 -0
- data/spec/unit/latvia_kpv_p_par_spec.rb +38 -0
- data/spec/unit/latvia_kpv_par_spec.rb +38 -0
- data/spec/unit/latvia_kpv_spec.rb +38 -0
- data/spec/unit/latvia_spec.rb +60 -0
- data/spec/unit/luxembourg_spec.rb +54 -0
- data/spec/unit/multi_district_leveled_proportional_spec.rb +49 -0
- data/spec/unit/multi_district_proportional_spec.rb +81 -0
- data/spec/unit/netherlands_spec.rb +107 -0
- data/spec/unit/norway_spec.rb +64 -0
- data/spec/unit/norwegian_municipality_spec.rb +89 -0
- data/spec/unit/number_formatter_spec.rb +173 -0
- data/spec/unit/poland_spec.rb +62 -0
- data/spec/unit/poland_with_ko_and_l_without_n_po_r_and_zl_spec.rb +60 -0
- data/spec/unit/poland_with_ko_konf_kp_l_and_zp_without_k_k15_n_pis_po_psl_r_and_zl_spec.rb +59 -0
- data/spec/unit/poland_with_ko_sld_and_wi_without_n_po_and_zl_spec.rb +62 -0
- data/spec/unit/poland_with_sld_and_wi_without_zl_spec.rb +63 -0
- data/spec/unit/poland_with_sld_without_zl_spec.rb +62 -0
- data/spec/unit/poll_spec.rb +110 -0
- data/spec/unit/portugal_spec.rb +66 -0
- data/spec/unit/portugal_with_a_and_ch_without_paf_spec.rb +68 -0
- data/spec/unit/portugal_with_a_and_il_without_paf_spec.rb +68 -0
- data/spec/unit/portugal_with_a_ch_and_il_without_paf_spec.rb +69 -0
- data/spec/unit/portugal_with_a_without_paf_spec.rb +67 -0
- data/spec/unit/portugal_with_ch_and_il_without_paf_spec.rb +68 -0
- data/spec/unit/portugal_without_paf_spec.rb +66 -0
- data/spec/unit/pseudorandom_multirange_enumerator_spec.rb +82 -0
- data/spec/unit/referendum_polychotomy_spec.rb +289 -0
- data/spec/unit/representatives_polychotomy_spec.rb +332 -0
- data/spec/unit/slovakia_spec.rb +99 -0
- data/spec/unit/slovenia_spec.rb +80 -0
- data/spec/unit/spain_spec.rb +101 -0
- data/spec/unit/sweden_20140914_spec.rb +112 -0
- data/spec/unit/sweden_spec.rb +113 -0
- data/spec/unit/united_kingdom_spec.rb +65 -0
- data/spec/unit/united_kingdom_with_brexit_and_chuk_spec.rb +67 -0
- data/spec/unit/united_kingdom_with_brexit_spec.rb +66 -0
- data/spec/unit/united_kingdom_with_tig_spec.rb +66 -0
- data/spec/unit/wallonia_spec.rb +70 -0
- metadata +490 -0
|
@@ -0,0 +1,4521 @@
|
|
|
1
|
+
# Statistical Analysis of Polling Results (SAPoR)
|
|
2
|
+
# Copyright (C) 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
|
|
3
|
+
#
|
|
4
|
+
# This file is part of SAPoR.
|
|
5
|
+
#
|
|
6
|
+
# SAPoR is free software: you can redistribute it and/or modify it under the
|
|
7
|
+
# terms of the GNU General Public License as published by the Free Software
|
|
8
|
+
# Foundation, either version 3 of the License, or (at your option) any later
|
|
9
|
+
# version.
|
|
10
|
+
#
|
|
11
|
+
# SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
12
|
+
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
13
|
+
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
14
|
+
#
|
|
15
|
+
# You can find a copy of the GNU General Public License in /doc/gpl.txt
|
|
16
|
+
#
|
|
17
|
+
# Changes:
|
|
18
|
+
#
|
|
19
|
+
|
|
20
|
+
Aldershot | Conservative Party | 26955
|
|
21
|
+
Aldershot | Labour Party | 15477
|
|
22
|
+
Aldershot | Liberal Democrats | 3637
|
|
23
|
+
Aldershot | UK Independence Party | 1796
|
|
24
|
+
Aldershot | Green Party | 1090
|
|
25
|
+
|
|
26
|
+
Aldridge-Brownhills | Conservative Party | 26317
|
|
27
|
+
Aldridge-Brownhills | Labour Party | 12010
|
|
28
|
+
Aldridge-Brownhills | Liberal Democrats | 1343
|
|
29
|
+
Aldridge-Brownhills | All other candidates | 565
|
|
30
|
+
|
|
31
|
+
Altrincham and Sale West | Conservative Party | 26933
|
|
32
|
+
Altrincham and Sale West | Labour Party | 20507
|
|
33
|
+
Altrincham and Sale West | Liberal Democrats | 4051
|
|
34
|
+
Altrincham and Sale West | Green Party | 1000
|
|
35
|
+
Altrincham and Sale West | All other candidates | 299
|
|
36
|
+
|
|
37
|
+
Amber Valley | Conservative Party | 25905
|
|
38
|
+
Amber Valley | Labour Party | 17605
|
|
39
|
+
Amber Valley | Liberal Democrats | 1100
|
|
40
|
+
Amber Valley | Green Party | 650
|
|
41
|
+
Amber Valley | All other candidates | 551
|
|
42
|
+
|
|
43
|
+
Arundel and South Downs | Conservative Party | 37573
|
|
44
|
+
Arundel and South Downs | Labour Party | 13690
|
|
45
|
+
Arundel and South Downs | Liberal Democrats | 4783
|
|
46
|
+
Arundel and South Downs | UK Independence Party | 1668
|
|
47
|
+
Arundel and South Downs | Green Party | 2542
|
|
48
|
+
|
|
49
|
+
Ashfield | Conservative Party | 20844
|
|
50
|
+
Ashfield | Labour Party | 21285
|
|
51
|
+
Ashfield | Liberal Democrats | 969
|
|
52
|
+
Ashfield | UK Independence Party | 1885
|
|
53
|
+
Ashfield | Green Party | 398
|
|
54
|
+
Ashfield | Small or local party, or independent candidate | 4612
|
|
55
|
+
|
|
56
|
+
Ashford | Conservative Party | 35318
|
|
57
|
+
Ashford | Labour Party | 17840
|
|
58
|
+
Ashford | Liberal Democrats | 3101
|
|
59
|
+
Ashford | UK Independence Party | 2218
|
|
60
|
+
Ashford | Green Party | 1402
|
|
61
|
+
|
|
62
|
+
Ashton under Lyne | Conservative Party | 12710
|
|
63
|
+
Ashton under Lyne | Labour Party | 24005
|
|
64
|
+
Ashton under Lyne | Liberal Democrats | 646
|
|
65
|
+
Ashton under Lyne | UK Independence Party | 1878
|
|
66
|
+
Ashton under Lyne | Green Party | 534
|
|
67
|
+
|
|
68
|
+
Aylesbury | Conservative Party | 32313
|
|
69
|
+
Aylesbury | Labour Party | 17617
|
|
70
|
+
Aylesbury | Liberal Democrats | 5660
|
|
71
|
+
Aylesbury | UK Independence Party | 1296
|
|
72
|
+
Aylesbury | Green Party | 1237
|
|
73
|
+
Aylesbury | All other candidates | 620
|
|
74
|
+
|
|
75
|
+
Banbury | Conservative Party | 33388
|
|
76
|
+
Banbury | Labour Party | 20989
|
|
77
|
+
Banbury | Liberal Democrats | 3452
|
|
78
|
+
Banbury | UK Independence Party | 1581
|
|
79
|
+
Banbury | Green Party | 1225
|
|
80
|
+
Banbury | All other candidates | 927
|
|
81
|
+
|
|
82
|
+
Barking | Conservative Party | 10711
|
|
83
|
+
Barking | Labour Party | 32319
|
|
84
|
+
Barking | Liberal Democrats | 599
|
|
85
|
+
Barking | UK Independence Party | 3031
|
|
86
|
+
Barking | Green Party | 724
|
|
87
|
+
Barking | All other candidates | 295
|
|
88
|
+
|
|
89
|
+
Barnsley Central | Conservative Party | 9436
|
|
90
|
+
Barnsley Central | Labour Party | 24982
|
|
91
|
+
Barnsley Central | Liberal Democrats | 549
|
|
92
|
+
Barnsley Central | UK Independence Party | 3339
|
|
93
|
+
Barnsley Central | Green Party | 572
|
|
94
|
+
Barnsley Central | All other candidates | 211
|
|
95
|
+
|
|
96
|
+
Barnsley East | Conservative Party | 10997
|
|
97
|
+
Barnsley East | Labour Party | 24280
|
|
98
|
+
Barnsley East | Liberal Democrats | 750
|
|
99
|
+
Barnsley East | UK Independence Party | 3247
|
|
100
|
+
Barnsley East | Small or local party, or independent candidate | 1215
|
|
101
|
+
Barnsley East | All other candidates | 287
|
|
102
|
+
|
|
103
|
+
Barrow and Furness | Conservative Party | 22383
|
|
104
|
+
Barrow and Furness | Labour Party | 22592
|
|
105
|
+
Barrow and Furness | Liberal Democrats | 1278
|
|
106
|
+
Barrow and Furness | UK Independence Party | 962
|
|
107
|
+
Barrow and Furness | Green Party | 375
|
|
108
|
+
|
|
109
|
+
Basildon and Billericay | Conservative Party | 27381
|
|
110
|
+
Basildon and Billericay | Labour Party | 13981
|
|
111
|
+
Basildon and Billericay | Liberal Democrats | 1548
|
|
112
|
+
Basildon and Billericay | UK Independence Party | 2008
|
|
113
|
+
|
|
114
|
+
Basildon South and East Thurrock | Conservative Party | 26811
|
|
115
|
+
Basildon South and East Thurrock | Labour Party | 15321
|
|
116
|
+
Basildon South and East Thurrock | Liberal Democrats | 732
|
|
117
|
+
Basildon South and East Thurrock | UK Independence Party | 3193
|
|
118
|
+
Basildon South and East Thurrock | Green Party | 680
|
|
119
|
+
Basildon South and East Thurrock | All other candidates | 383
|
|
120
|
+
|
|
121
|
+
Basingstoke | Conservative Party | 29510
|
|
122
|
+
Basingstoke | Labour Party | 20044
|
|
123
|
+
Basingstoke | Liberal Democrats | 3406
|
|
124
|
+
Basingstoke | UK Independence Party | 1681
|
|
125
|
+
Basingstoke | Green Party | 1106
|
|
126
|
+
Basingstoke | All other candidates | 213
|
|
127
|
+
|
|
128
|
+
Bassetlaw | Conservative Party | 22615
|
|
129
|
+
Bassetlaw | Labour Party | 27467
|
|
130
|
+
Bassetlaw | Liberal Democrats | 1154
|
|
131
|
+
Bassetlaw | Small or local party, or independent candidate | 1014
|
|
132
|
+
|
|
133
|
+
Bath | Conservative Party | 17742
|
|
134
|
+
Bath | Labour Party | 7279
|
|
135
|
+
Bath | Liberal Democrats | 23436
|
|
136
|
+
Bath | Green Party | 1125
|
|
137
|
+
|
|
138
|
+
Batley and Spen | Conservative Party | 20883
|
|
139
|
+
Batley and Spen | Labour Party | 29844
|
|
140
|
+
Batley and Spen | Liberal Democrats | 1224
|
|
141
|
+
Batley and Spen | Green Party | 695
|
|
142
|
+
Batley and Spen | Small or local party, or independent candidate | 1076
|
|
143
|
+
Batley and Spen | All other candidates | 58
|
|
144
|
+
|
|
145
|
+
Battersea | Conservative Party | 22876
|
|
146
|
+
Battersea | Labour Party | 25292
|
|
147
|
+
Battersea | Liberal Democrats | 4401
|
|
148
|
+
Battersea | UK Independence Party | 357
|
|
149
|
+
Battersea | Green Party | 866
|
|
150
|
+
Battersea | Small or local party, or independent candidate | 1234
|
|
151
|
+
Battersea | All other candidates | 32
|
|
152
|
+
|
|
153
|
+
Beaconsfield | Conservative Party | 36559
|
|
154
|
+
Beaconsfield | Labour Party | 12016
|
|
155
|
+
Beaconsfield | Liberal Democrats | 4448
|
|
156
|
+
Beaconsfield | UK Independence Party | 1609
|
|
157
|
+
Beaconsfield | Green Party | 1396
|
|
158
|
+
|
|
159
|
+
Beckenham | Conservative Party | 30632
|
|
160
|
+
Beckenham | Labour Party | 15545
|
|
161
|
+
Beckenham | Liberal Democrats | 4073
|
|
162
|
+
Beckenham | Green Party | 1380
|
|
163
|
+
|
|
164
|
+
Bedford | Conservative Party | 21923
|
|
165
|
+
Bedford | Labour Party | 22712
|
|
166
|
+
Bedford | Liberal Democrats | 2837
|
|
167
|
+
Bedford | Green Party | 1008
|
|
168
|
+
|
|
169
|
+
Bedfordshire Mid | Conservative Party | 38936
|
|
170
|
+
Bedfordshire Mid | Labour Party | 17953
|
|
171
|
+
Bedfordshire Mid | Liberal Democrats | 3798
|
|
172
|
+
Bedfordshire Mid | Green Party | 1794
|
|
173
|
+
Bedfordshire Mid | All other candidates | 667
|
|
174
|
+
|
|
175
|
+
Bedfordshire North East | Conservative Party | 39139
|
|
176
|
+
Bedfordshire North East | Labour Party | 18277
|
|
177
|
+
Bedfordshire North East | Liberal Democrats | 3693
|
|
178
|
+
Bedfordshire North East | UK Independence Party | 1896
|
|
179
|
+
Bedfordshire North East | Green Party | 1215
|
|
180
|
+
|
|
181
|
+
Bedfordshire South West | Conservative Party | 32961
|
|
182
|
+
Bedfordshire South West | Labour Party | 18793
|
|
183
|
+
Bedfordshire South West | Liberal Democrats | 2630
|
|
184
|
+
Bedfordshire South West | Green Party | 950
|
|
185
|
+
Bedfordshire South West | All other candidates | 301
|
|
186
|
+
|
|
187
|
+
Bermondsey and Old Southwark | Conservative Party | 7581
|
|
188
|
+
Bermondsey and Old Southwark | Labour Party | 31161
|
|
189
|
+
Bermondsey and Old Southwark | Liberal Democrats | 18189
|
|
190
|
+
Bermondsey and Old Southwark | UK Independence Party | 838
|
|
191
|
+
Bermondsey and Old Southwark | Green Party | 639
|
|
192
|
+
Bermondsey and Old Southwark | All other candidates | 113
|
|
193
|
+
|
|
194
|
+
Berwick-upon-Tweed | Conservative Party | 22145
|
|
195
|
+
Berwick-upon-Tweed | Labour Party | 10364
|
|
196
|
+
Berwick-upon-Tweed | Liberal Democrats | 8916
|
|
197
|
+
Berwick-upon-Tweed | Green Party | 787
|
|
198
|
+
|
|
199
|
+
Bethnal Green and Bow | Conservative Party | 7576
|
|
200
|
+
Bethnal Green and Bow | Labour Party | 42969
|
|
201
|
+
Bethnal Green and Bow | Liberal Democrats | 2982
|
|
202
|
+
Bethnal Green and Bow | UK Independence Party | 894
|
|
203
|
+
Bethnal Green and Bow | Green Party | 1516
|
|
204
|
+
Bethnal Green and Bow | Small or local party, or independent candidate | 3888
|
|
205
|
+
|
|
206
|
+
Beverley and Holderness | Conservative Party | 32499
|
|
207
|
+
Beverley and Holderness | Labour Party | 18457
|
|
208
|
+
Beverley and Holderness | Liberal Democrats | 2808
|
|
209
|
+
Beverley and Holderness | Green Party | 756
|
|
210
|
+
Beverley and Holderness | Small or local party, or independent candidate | 1158
|
|
211
|
+
|
|
212
|
+
Bexhill and Battle | Conservative Party | 36854
|
|
213
|
+
Bexhill and Battle | Labour Party | 14689
|
|
214
|
+
Bexhill and Battle | Liberal Democrats | 4485
|
|
215
|
+
Bexhill and Battle | UK Independence Party | 2006
|
|
216
|
+
Bexhill and Battle | Green Party | 1438
|
|
217
|
+
|
|
218
|
+
Bexleyheath and Crayford | Conservative Party | 25113
|
|
219
|
+
Bexleyheath and Crayford | Labour Party | 16040
|
|
220
|
+
Bexleyheath and Crayford | Liberal Democrats | 1201
|
|
221
|
+
Bexleyheath and Crayford | UK Independence Party | 1944
|
|
222
|
+
Bexleyheath and Crayford | Green Party | 601
|
|
223
|
+
Bexleyheath and Crayford | All other candidates | 290
|
|
224
|
+
|
|
225
|
+
Birkenhead | Conservative Party | 8044
|
|
226
|
+
Birkenhead | Labour Party | 33558
|
|
227
|
+
Birkenhead | Liberal Democrats | 1118
|
|
228
|
+
Birkenhead | Green Party | 943
|
|
229
|
+
|
|
230
|
+
Birmingham Edgbaston | Conservative Party | 17207
|
|
231
|
+
Birmingham Edgbaston | Labour Party | 24124
|
|
232
|
+
Birmingham Edgbaston | Liberal Democrats | 1564
|
|
233
|
+
Birmingham Edgbaston | Green Party | 562
|
|
234
|
+
Birmingham Edgbaston | All other candidates | 155
|
|
235
|
+
|
|
236
|
+
Birmingham Erdington | Conservative Party | 14286
|
|
237
|
+
Birmingham Erdington | Labour Party | 21571
|
|
238
|
+
Birmingham Erdington | Liberal Democrats | 750
|
|
239
|
+
Birmingham Erdington | Green Party | 610
|
|
240
|
+
|
|
241
|
+
Birmingham Hall Green | Conservative Party | 8199
|
|
242
|
+
Birmingham Hall Green | Labour Party | 42143
|
|
243
|
+
Birmingham Hall Green | Liberal Democrats | 3137
|
|
244
|
+
Birmingham Hall Green | Green Party | 831
|
|
245
|
+
|
|
246
|
+
Birmingham Hodge Hill | Conservative Party | 6580
|
|
247
|
+
Birmingham Hodge Hill | Labour Party | 37606
|
|
248
|
+
Birmingham Hodge Hill | Liberal Democrats | 805
|
|
249
|
+
Birmingham Hodge Hill | UK Independence Party | 1016
|
|
250
|
+
Birmingham Hodge Hill | Green Party | 387
|
|
251
|
+
|
|
252
|
+
Birmingham Ladywood | Conservative Party | 5452
|
|
253
|
+
Birmingham Ladywood | Labour Party | 34166
|
|
254
|
+
Birmingham Ladywood | Liberal Democrats | 1156
|
|
255
|
+
Birmingham Ladywood | Green Party | 533
|
|
256
|
+
|
|
257
|
+
Birmingham Northfield | Conservative Party | 18929
|
|
258
|
+
Birmingham Northfield | Labour Party | 23596
|
|
259
|
+
Birmingham Northfield | Liberal Democrats | 959
|
|
260
|
+
Birmingham Northfield | Green Party | 864
|
|
261
|
+
|
|
262
|
+
Birmingham Perry Barr | Conservative Party | 11726
|
|
263
|
+
Birmingham Perry Barr | Labour Party | 30109
|
|
264
|
+
Birmingham Perry Barr | Liberal Democrats | 1080
|
|
265
|
+
Birmingham Perry Barr | Green Party | 591
|
|
266
|
+
Birmingham Perry Barr | Small or local party, or independent candidate | 592
|
|
267
|
+
Birmingham Perry Barr | All other candidates | 99
|
|
268
|
+
|
|
269
|
+
Birmingham Selly Oak | Conservative Party | 15629
|
|
270
|
+
Birmingham Selly Oak | Labour Party | 30836
|
|
271
|
+
Birmingham Selly Oak | Liberal Democrats | 1644
|
|
272
|
+
Birmingham Selly Oak | Green Party | 876
|
|
273
|
+
|
|
274
|
+
Birmingham Yardley | Conservative Party | 8824
|
|
275
|
+
Birmingham Yardley | Labour Party | 25398
|
|
276
|
+
Birmingham Yardley | Liberal Democrats | 7984
|
|
277
|
+
Birmingham Yardley | UK Independence Party | 1916
|
|
278
|
+
Birmingham Yardley | Green Party | 280
|
|
279
|
+
Birmingham Yardley | All other candidates | 100
|
|
280
|
+
|
|
281
|
+
Bishop Auckland | Conservative Party | 20306
|
|
282
|
+
Bishop Auckland | Labour Party | 20808
|
|
283
|
+
Bishop Auckland | Liberal Democrats | 1176
|
|
284
|
+
Bishop Auckland | All other candidates | 991
|
|
285
|
+
|
|
286
|
+
Blackburn | Conservative Party | 12780
|
|
287
|
+
Blackburn | Labour Party | 33148
|
|
288
|
+
Blackburn | Liberal Democrats | 709
|
|
289
|
+
Blackburn | Small or local party, or independent candidate | 875
|
|
290
|
+
|
|
291
|
+
Blackley and Broughton | Conservative Party | 8657
|
|
292
|
+
Blackley and Broughton | Labour Party | 28258
|
|
293
|
+
Blackley and Broughton | Liberal Democrats | 737
|
|
294
|
+
Blackley and Broughton | UK Independence Party | 1825
|
|
295
|
+
Blackley and Broughton | Green Party | 462
|
|
296
|
+
Blackley and Broughton | All other candidates | 174
|
|
297
|
+
|
|
298
|
+
Blackpool North and Cleveleys | Conservative Party | 20255
|
|
299
|
+
Blackpool North and Cleveleys | Labour Party | 18232
|
|
300
|
+
Blackpool North and Cleveleys | Liberal Democrats | 747
|
|
301
|
+
Blackpool North and Cleveleys | UK Independence Party | 1392
|
|
302
|
+
Blackpool North and Cleveleys | Green Party | 381
|
|
303
|
+
|
|
304
|
+
Blackpool South | Conservative Party | 15058
|
|
305
|
+
Blackpool South | Labour Party | 17581
|
|
306
|
+
Blackpool South | Liberal Democrats | 634
|
|
307
|
+
Blackpool South | UK Independence Party | 1339
|
|
308
|
+
Blackpool South | Green Party | 341
|
|
309
|
+
|
|
310
|
+
Blaydon | Conservative Party | 13502
|
|
311
|
+
Blaydon | Labour Party | 26979
|
|
312
|
+
Blaydon | Liberal Democrats | 4366
|
|
313
|
+
Blaydon | UK Independence Party | 2459
|
|
314
|
+
Blaydon | Green Party | 583
|
|
315
|
+
Blaydon | All other candidates | 195
|
|
316
|
+
|
|
317
|
+
Blyth Valley | Conservative Party | 15855
|
|
318
|
+
Blyth Valley | Labour Party | 23770
|
|
319
|
+
Blyth Valley | Liberal Democrats | 1947
|
|
320
|
+
Blyth Valley | Green Party | 918
|
|
321
|
+
|
|
322
|
+
Bognor Regis and Littlehampton | Conservative Party | 30276
|
|
323
|
+
Bognor Regis and Littlehampton | Labour Party | 12782
|
|
324
|
+
Bognor Regis and Littlehampton | Liberal Democrats | 3352
|
|
325
|
+
Bognor Regis and Littlehampton | UK Independence Party | 1861
|
|
326
|
+
Bognor Regis and Littlehampton | Green Party | 993
|
|
327
|
+
Bognor Regis and Littlehampton | Small or local party, or independent candidate | 2088
|
|
328
|
+
|
|
329
|
+
Bolsover | Conservative Party | 18865
|
|
330
|
+
Bolsover | Labour Party | 24153
|
|
331
|
+
Bolsover | Liberal Democrats | 1372
|
|
332
|
+
Bolsover | UK Independence Party | 2129
|
|
333
|
+
|
|
334
|
+
Bolton North East | Conservative Party | 19073
|
|
335
|
+
Bolton North East | Labour Party | 22870
|
|
336
|
+
Bolton North East | Liberal Democrats | 1316
|
|
337
|
+
Bolton North East | UK Independence Party | 1567
|
|
338
|
+
Bolton North East | Green Party | 357
|
|
339
|
+
|
|
340
|
+
Bolton South East | Conservative Party | 12550
|
|
341
|
+
Bolton South East | Labour Party | 25676
|
|
342
|
+
Bolton South East | Liberal Democrats | 781
|
|
343
|
+
Bolton South East | UK Independence Party | 2779
|
|
344
|
+
Bolton South East | Green Party | 537
|
|
345
|
+
|
|
346
|
+
Bolton West | Conservative Party | 24459
|
|
347
|
+
Bolton West | Labour Party | 23523
|
|
348
|
+
Bolton West | Liberal Democrats | 1485
|
|
349
|
+
Bolton West | UK Independence Party | 1587
|
|
350
|
+
|
|
351
|
+
Bootle | Conservative Party | 6059
|
|
352
|
+
Bootle | Labour Party | 42259
|
|
353
|
+
Bootle | Liberal Democrats | 837
|
|
354
|
+
Bootle | Green Party | 709
|
|
355
|
+
Bootle | All other candidates | 424
|
|
356
|
+
|
|
357
|
+
Boston and Skegness | Conservative Party | 27271
|
|
358
|
+
Boston and Skegness | Labour Party | 10699
|
|
359
|
+
Boston and Skegness | Liberal Democrats | 771
|
|
360
|
+
Boston and Skegness | UK Independence Party | 3308
|
|
361
|
+
Boston and Skegness | Green Party | 547
|
|
362
|
+
Boston and Skegness | All other candidates | 283
|
|
363
|
+
|
|
364
|
+
Bosworth | Conservative Party | 31864
|
|
365
|
+
Bosworth | Labour Party | 13513
|
|
366
|
+
Bosworth | Liberal Democrats | 9744
|
|
367
|
+
Bosworth | Green Party | 1047
|
|
368
|
+
|
|
369
|
+
Bournemouth East | Conservative Party | 25221
|
|
370
|
+
Bournemouth East | Labour Party | 17284
|
|
371
|
+
Bournemouth East | Liberal Democrats | 3168
|
|
372
|
+
Bournemouth East | UK Independence Party | 1405
|
|
373
|
+
Bournemouth East | Green Party | 1236
|
|
374
|
+
Bournemouth East | All other candidates | 304
|
|
375
|
+
|
|
376
|
+
Bournemouth West | Conservative Party | 23812
|
|
377
|
+
Bournemouth West | Labour Party | 16101
|
|
378
|
+
Bournemouth West | Liberal Democrats | 2929
|
|
379
|
+
Bournemouth West | Green Party | 1247
|
|
380
|
+
Bournemouth West | All other candidates | 418
|
|
381
|
+
|
|
382
|
+
Bracknell | Conservative Party | 32882
|
|
383
|
+
Bracknell | Labour Party | 16866
|
|
384
|
+
Bracknell | Liberal Democrats | 4186
|
|
385
|
+
Bracknell | UK Independence Party | 1521
|
|
386
|
+
Bracknell | All other candidates | 437
|
|
387
|
+
|
|
388
|
+
Bradford East | Conservative Party | 9291
|
|
389
|
+
Bradford East | Labour Party | 29831
|
|
390
|
+
Bradford East | Liberal Democrats | 843
|
|
391
|
+
Bradford East | UK Independence Party | 1372
|
|
392
|
+
Bradford East | Green Party | 289
|
|
393
|
+
Bradford East | Small or local party, or independent candidate | 3576
|
|
394
|
+
Bradford East | All other candidates | 420
|
|
395
|
+
|
|
396
|
+
Bradford South | Conservative Party | 15664
|
|
397
|
+
Bradford South | Labour Party | 22364
|
|
398
|
+
Bradford South | Liberal Democrats | 516
|
|
399
|
+
Bradford South | UK Independence Party | 1758
|
|
400
|
+
Bradford South | Green Party | 370
|
|
401
|
+
Bradford South | Small or local party, or independent candidate | 377
|
|
402
|
+
|
|
403
|
+
Bradford West | Conservative Party | 7542
|
|
404
|
+
Bradford West | Labour Party | 29444
|
|
405
|
+
Bradford West | Liberal Democrats | 712
|
|
406
|
+
Bradford West | UK Independence Party | 885
|
|
407
|
+
Bradford West | Green Party | 481
|
|
408
|
+
Bradford West | Small or local party, or independent candidate | 6345
|
|
409
|
+
Bradford West | All other candidates | 119
|
|
410
|
+
|
|
411
|
+
Braintree | Conservative Party | 32873
|
|
412
|
+
Braintree | Labour Party | 14451
|
|
413
|
+
Braintree | Liberal Democrats | 2251
|
|
414
|
+
Braintree | UK Independence Party | 1835
|
|
415
|
+
Braintree | Green Party | 916
|
|
416
|
+
|
|
417
|
+
Brent Central | Conservative Party | 10211
|
|
418
|
+
Brent Central | Labour Party | 38208
|
|
419
|
+
Brent Central | Liberal Democrats | 2519
|
|
420
|
+
Brent Central | UK Independence Party | 556
|
|
421
|
+
Brent Central | Green Party | 802
|
|
422
|
+
|
|
423
|
+
Brent North | Conservative Party | 18435
|
|
424
|
+
Brent North | Labour Party | 35496
|
|
425
|
+
Brent North | Liberal Democrats | 1614
|
|
426
|
+
Brent North | Green Party | 660
|
|
427
|
+
Brent North | All other candidates | 239
|
|
428
|
+
|
|
429
|
+
Brentford and Isleworth | Conservative Party | 23182
|
|
430
|
+
Brentford and Isleworth | Labour Party | 35364
|
|
431
|
+
Brentford and Isleworth | Liberal Democrats | 3083
|
|
432
|
+
|
|
433
|
+
Brentwood and Ongar | Conservative Party | 34811
|
|
434
|
+
Brentwood and Ongar | Labour Party | 10809
|
|
435
|
+
Brentwood and Ongar | Liberal Democrats | 4426
|
|
436
|
+
Brentwood and Ongar | UK Independence Party | 1845
|
|
437
|
+
Brentwood and Ongar | Green Party | 915
|
|
438
|
+
Brentwood and Ongar | All other candidates | 104
|
|
439
|
+
|
|
440
|
+
Bridgwater and West Somerset | Conservative Party | 32111
|
|
441
|
+
Bridgwater and West Somerset | Labour Party | 16663
|
|
442
|
+
Bridgwater and West Somerset | Liberal Democrats | 6332
|
|
443
|
+
Bridgwater and West Somerset | UK Independence Party | 2102
|
|
444
|
+
Bridgwater and West Somerset | Green Party | 1059
|
|
445
|
+
|
|
446
|
+
Brigg and Goole | Conservative Party | 27219
|
|
447
|
+
Brigg and Goole | Labour Party | 14856
|
|
448
|
+
Brigg and Goole | Liberal Democrats | 836
|
|
449
|
+
Brigg and Goole | UK Independence Party | 1596
|
|
450
|
+
Brigg and Goole | Green Party | 550
|
|
451
|
+
|
|
452
|
+
Brighton Kemptown | Conservative Party | 18835
|
|
453
|
+
Brighton Kemptown | Labour Party | 28703
|
|
454
|
+
Brighton Kemptown | Liberal Democrats | 1457
|
|
455
|
+
Brighton Kemptown | All other candidates | 212
|
|
456
|
+
|
|
457
|
+
Brighton Pavilion | Conservative Party | 11082
|
|
458
|
+
Brighton Pavilion | Labour Party | 15450
|
|
459
|
+
Brighton Pavilion | UK Independence Party | 630
|
|
460
|
+
Brighton Pavilion | Green Party | 30139
|
|
461
|
+
Brighton Pavilion | All other candidates | 376
|
|
462
|
+
|
|
463
|
+
Bristol East | Conservative Party | 17453
|
|
464
|
+
Bristol East | Labour Party | 30847
|
|
465
|
+
Bristol East | Liberal Democrats | 1389
|
|
466
|
+
Bristol East | Green Party | 1110
|
|
467
|
+
|
|
468
|
+
Bristol North West | Conservative Party | 22639
|
|
469
|
+
Bristol North West | Labour Party | 27400
|
|
470
|
+
Bristol North West | Liberal Democrats | 2814
|
|
471
|
+
Bristol North West | Green Party | 1243
|
|
472
|
+
|
|
473
|
+
Bristol South | Conservative Party | 16679
|
|
474
|
+
Bristol South | Labour Party | 32666
|
|
475
|
+
Bristol South | Liberal Democrats | 1821
|
|
476
|
+
Bristol South | UK Independence Party | 1672
|
|
477
|
+
Bristol South | Green Party | 1428
|
|
478
|
+
Bristol South | All other candidates | 116
|
|
479
|
+
|
|
480
|
+
Bristol West | Conservative Party | 9877
|
|
481
|
+
Bristol West | Labour Party | 47213
|
|
482
|
+
Bristol West | Liberal Democrats | 5201
|
|
483
|
+
Bristol West | Green Party | 9216
|
|
484
|
+
Bristol West | All other candidates | 101
|
|
485
|
+
|
|
486
|
+
Broadland | Conservative Party | 32406
|
|
487
|
+
Broadland | Labour Party | 16590
|
|
488
|
+
Broadland | Liberal Democrats | 4449
|
|
489
|
+
Broadland | UK Independence Party | 1594
|
|
490
|
+
Broadland | Green Party | 932
|
|
491
|
+
|
|
492
|
+
Bromley and Chislehurst | Conservative Party | 25175
|
|
493
|
+
Bromley and Chislehurst | Labour Party | 15585
|
|
494
|
+
Bromley and Chislehurst | Liberal Democrats | 3369
|
|
495
|
+
Bromley and Chislehurst | UK Independence Party | 1383
|
|
496
|
+
Bromley and Chislehurst | Green Party | 1150
|
|
497
|
+
|
|
498
|
+
Bromsgrove | Conservative Party | 33493
|
|
499
|
+
Bromsgrove | Labour Party | 16920
|
|
500
|
+
Bromsgrove | Liberal Democrats | 2488
|
|
501
|
+
Bromsgrove | Green Party | 1139
|
|
502
|
+
|
|
503
|
+
Broxbourne | Conservative Party | 29515
|
|
504
|
+
Broxbourne | Labour Party | 13723
|
|
505
|
+
Broxbourne | Liberal Democrats | 1481
|
|
506
|
+
Broxbourne | UK Independence Party | 1918
|
|
507
|
+
Broxbourne | Green Party | 848
|
|
508
|
+
|
|
509
|
+
Broxtowe | Conservative Party | 25983
|
|
510
|
+
Broxtowe | Labour Party | 25120
|
|
511
|
+
Broxtowe | Liberal Democrats | 2247
|
|
512
|
+
Broxtowe | UK Independence Party | 1477
|
|
513
|
+
Broxtowe | Green Party | 681
|
|
514
|
+
|
|
515
|
+
Buckingham | Conservative Party | 34299
|
|
516
|
+
Buckingham | UK Independence Party | 4168
|
|
517
|
+
Buckingham | Green Party | 8574
|
|
518
|
+
Buckingham | Small or local party, or independent candidate | 5638
|
|
519
|
+
|
|
520
|
+
Burnley | Conservative Party | 12479
|
|
521
|
+
Burnley | Labour Party | 18832
|
|
522
|
+
Burnley | Liberal Democrats | 6046
|
|
523
|
+
Burnley | UK Independence Party | 2472
|
|
524
|
+
Burnley | Green Party | 461
|
|
525
|
+
|
|
526
|
+
Burton | Conservative Party | 28936
|
|
527
|
+
Burton | Labour Party | 18889
|
|
528
|
+
Burton | Liberal Democrats | 1262
|
|
529
|
+
Burton | Green Party | 824
|
|
530
|
+
|
|
531
|
+
Bury North | Conservative Party | 21308
|
|
532
|
+
Bury North | Labour Party | 25683
|
|
533
|
+
Bury North | Liberal Democrats | 912
|
|
534
|
+
|
|
535
|
+
Bury South | Conservative Party | 21200
|
|
536
|
+
Bury South | Labour Party | 27165
|
|
537
|
+
Bury South | Liberal Democrats | 1065
|
|
538
|
+
Bury South | UK Independence Party | 1316
|
|
539
|
+
Bury South | All other candidates | 244
|
|
540
|
+
|
|
541
|
+
Bury St Edmunds | Conservative Party | 36794
|
|
542
|
+
Bury St Edmunds | Labour Party | 18353
|
|
543
|
+
Bury St Edmunds | Liberal Democrats | 3565
|
|
544
|
+
Bury St Edmunds | Green Party | 2596
|
|
545
|
+
Bury St Edmunds | All other candidates | 852
|
|
546
|
+
|
|
547
|
+
Calder Valley | Conservative Party | 26790
|
|
548
|
+
Calder Valley | Labour Party | 26181
|
|
549
|
+
Calder Valley | Liberal Democrats | 1952
|
|
550
|
+
Calder Valley | UK Independence Party | 1466
|
|
551
|
+
Calder Valley | Green Party | 631
|
|
552
|
+
Calder Valley | Small or local party, or independent candidate | 1034
|
|
553
|
+
|
|
554
|
+
Camberwell and Peckham | Conservative Party | 7349
|
|
555
|
+
Camberwell and Peckham | Labour Party | 44665
|
|
556
|
+
Camberwell and Peckham | Liberal Democrats | 3413
|
|
557
|
+
Camberwell and Peckham | Green Party | 1627
|
|
558
|
+
Camberwell and Peckham | All other candidates | 358
|
|
559
|
+
|
|
560
|
+
Camborne and Redruth | Conservative Party | 23001
|
|
561
|
+
Camborne and Redruth | Labour Party | 21424
|
|
562
|
+
Camborne and Redruth | Liberal Democrats | 2979
|
|
563
|
+
Camborne and Redruth | Green Party | 1052
|
|
564
|
+
|
|
565
|
+
Cambridge | Conservative Party | 9133
|
|
566
|
+
Cambridge | Labour Party | 29032
|
|
567
|
+
Cambridge | Liberal Democrats | 16371
|
|
568
|
+
Cambridge | Green Party | 1265
|
|
569
|
+
Cambridge | All other candidates | 133
|
|
570
|
+
|
|
571
|
+
Cambridgeshire North East | Conservative Party | 34340
|
|
572
|
+
Cambridgeshire North East | Labour Party | 13070
|
|
573
|
+
Cambridgeshire North East | Liberal Democrats | 2383
|
|
574
|
+
Cambridgeshire North East | UK Independence Party | 2174
|
|
575
|
+
Cambridgeshire North East | Green Party | 1024
|
|
576
|
+
Cambridgeshire North East | All other candidates | 293
|
|
577
|
+
|
|
578
|
+
Cambridgeshire North West | Conservative Party | 37529
|
|
579
|
+
Cambridgeshire North West | Labour Party | 19521
|
|
580
|
+
Cambridgeshire North West | Liberal Democrats | 3168
|
|
581
|
+
Cambridgeshire North West | UK Independence Party | 2518
|
|
582
|
+
Cambridgeshire North West | Green Party | 1255
|
|
583
|
+
|
|
584
|
+
Cambridgeshire South | Conservative Party | 33631
|
|
585
|
+
Cambridgeshire South | Labour Party | 17679
|
|
586
|
+
Cambridgeshire South | Liberal Democrats | 12102
|
|
587
|
+
Cambridgeshire South | Green Party | 1512
|
|
588
|
+
|
|
589
|
+
Cambridgeshire South East | Conservative Party | 33601
|
|
590
|
+
Cambridgeshire South East | Labour Party | 17443
|
|
591
|
+
Cambridgeshire South East | Liberal Democrats | 11958
|
|
592
|
+
|
|
593
|
+
Cannock Chase | Conservative Party | 26318
|
|
594
|
+
Cannock Chase | Labour Party | 17927
|
|
595
|
+
Cannock Chase | Liberal Democrats | 794
|
|
596
|
+
Cannock Chase | UK Independence Party | 2018
|
|
597
|
+
Cannock Chase | Green Party | 815
|
|
598
|
+
|
|
599
|
+
Canterbury | Conservative Party | 25385
|
|
600
|
+
Canterbury | Labour Party | 25572
|
|
601
|
+
Canterbury | Liberal Democrats | 4561
|
|
602
|
+
Canterbury | Green Party | 1282
|
|
603
|
+
|
|
604
|
+
Carlisle | Conservative Party | 21472
|
|
605
|
+
Carlisle | Labour Party | 18873
|
|
606
|
+
Carlisle | Liberal Democrats | 1256
|
|
607
|
+
Carlisle | UK Independence Party | 1455
|
|
608
|
+
|
|
609
|
+
Carshalton and Wallington | Conservative Party | 19450
|
|
610
|
+
Carshalton and Wallington | Labour Party | 9360
|
|
611
|
+
Carshalton and Wallington | Liberal Democrats | 20819
|
|
612
|
+
Carshalton and Wallington | Green Party | 501
|
|
613
|
+
Carshalton and Wallington | Small or local party, or independent candidate | 434
|
|
614
|
+
Carshalton and Wallington | All other candidates | 189
|
|
615
|
+
|
|
616
|
+
Castle Point | Conservative Party | 30076
|
|
617
|
+
Castle Point | Labour Party | 11204
|
|
618
|
+
Castle Point | Liberal Democrats | 1049
|
|
619
|
+
Castle Point | UK Independence Party | 2381
|
|
620
|
+
|
|
621
|
+
Charnwood | Conservative Party | 33318
|
|
622
|
+
Charnwood | Labour Party | 16977
|
|
623
|
+
Charnwood | Liberal Democrats | 2052
|
|
624
|
+
Charnwood | UK Independence Party | 1471
|
|
625
|
+
Charnwood | Green Party | 1036
|
|
626
|
+
Charnwood | All other candidates | 322
|
|
627
|
+
|
|
628
|
+
Chatham and Aylesford | Conservative Party | 25587
|
|
629
|
+
Chatham and Aylesford | Labour Party | 15129
|
|
630
|
+
Chatham and Aylesford | Liberal Democrats | 1116
|
|
631
|
+
Chatham and Aylesford | UK Independence Party | 2225
|
|
632
|
+
Chatham and Aylesford | Green Party | 573
|
|
633
|
+
Chatham and Aylesford | All other candidates | 260
|
|
634
|
+
|
|
635
|
+
Cheadle | Conservative Party | 24331
|
|
636
|
+
Cheadle | Labour Party | 10417
|
|
637
|
+
Cheadle | Liberal Democrats | 19824
|
|
638
|
+
|
|
639
|
+
Chelmsford | Conservative Party | 30525
|
|
640
|
+
Chelmsford | Labour Party | 16953
|
|
641
|
+
Chelmsford | Liberal Democrats | 6916
|
|
642
|
+
Chelmsford | UK Independence Party | 1645
|
|
643
|
+
Chelmsford | Green Party | 821
|
|
644
|
+
|
|
645
|
+
Chelsea and Fulham | Conservative Party | 22179
|
|
646
|
+
Chelsea and Fulham | Labour Party | 13991
|
|
647
|
+
Chelsea and Fulham | Liberal Democrats | 4627
|
|
648
|
+
Chelsea and Fulham | UK Independence Party | 524
|
|
649
|
+
Chelsea and Fulham | Green Party | 807
|
|
650
|
+
|
|
651
|
+
Cheltenham | Conservative Party | 26615
|
|
652
|
+
Cheltenham | Labour Party | 5408
|
|
653
|
+
Cheltenham | Liberal Democrats | 24046
|
|
654
|
+
Cheltenham | Green Party | 943
|
|
655
|
+
|
|
656
|
+
Chesham and Amersham | Conservative Party | 33514
|
|
657
|
+
Chesham and Amersham | Labour Party | 11374
|
|
658
|
+
Chesham and Amersham | Liberal Democrats | 7179
|
|
659
|
+
Chesham and Amersham | UK Independence Party | 1525
|
|
660
|
+
Chesham and Amersham | Green Party | 1660
|
|
661
|
+
|
|
662
|
+
Chester, City of | Conservative Party | 22847
|
|
663
|
+
Chester, City of | Labour Party | 32023
|
|
664
|
+
Chester, City of | Liberal Democrats | 1551
|
|
665
|
+
|
|
666
|
+
Chesterfield | Conservative Party | 16661
|
|
667
|
+
Chesterfield | Labour Party | 26266
|
|
668
|
+
Chesterfield | Liberal Democrats | 2612
|
|
669
|
+
Chesterfield | UK Independence Party | 1611
|
|
670
|
+
Chesterfield | Green Party | 777
|
|
671
|
+
|
|
672
|
+
Chichester | Conservative Party | 36032
|
|
673
|
+
Chichester | Labour Party | 13411
|
|
674
|
+
Chichester | Liberal Democrats | 6749
|
|
675
|
+
Chichester | UK Independence Party | 1650
|
|
676
|
+
Chichester | Green Party | 1992
|
|
677
|
+
Chichester | All other candidates | 84
|
|
678
|
+
|
|
679
|
+
Chingford and Woodford Green | Conservative Party | 23076
|
|
680
|
+
Chingford and Woodford Green | Labour Party | 20638
|
|
681
|
+
Chingford and Woodford Green | Liberal Democrats | 2043
|
|
682
|
+
Chingford and Woodford Green | Green Party | 1204
|
|
683
|
+
|
|
684
|
+
Chippenham | Conservative Party | 31267
|
|
685
|
+
Chippenham | Labour Party | 11236
|
|
686
|
+
Chippenham | Liberal Democrats | 14637
|
|
687
|
+
|
|
688
|
+
Chipping Barnet | Conservative Party | 25679
|
|
689
|
+
Chipping Barnet | Labour Party | 25326
|
|
690
|
+
Chipping Barnet | Liberal Democrats | 3012
|
|
691
|
+
Chipping Barnet | Green Party | 1406
|
|
692
|
+
|
|
693
|
+
Chorley | Conservative Party | 23233
|
|
694
|
+
Chorley | Labour Party | 30745
|
|
695
|
+
Chorley | Liberal Democrats | 1126
|
|
696
|
+
Chorley | Green Party | 530
|
|
697
|
+
|
|
698
|
+
Christchurch | Conservative Party | 35230
|
|
699
|
+
Christchurch | Labour Party | 10059
|
|
700
|
+
Christchurch | Liberal Democrats | 4020
|
|
701
|
+
Christchurch | Green Party | 1324
|
|
702
|
+
|
|
703
|
+
Cities of London and Westminster | Conservative Party | 18005
|
|
704
|
+
Cities of London and Westminster | Labour Party | 14857
|
|
705
|
+
Cities of London and Westminster | Liberal Democrats | 4270
|
|
706
|
+
Cities of London and Westminster | UK Independence Party | 426
|
|
707
|
+
Cities of London and Westminster | Green Party | 821
|
|
708
|
+
Cities of London and Westminster | All other candidates | 275
|
|
709
|
+
|
|
710
|
+
Clacton | Conservative Party | 27031
|
|
711
|
+
Clacton | Labour Party | 11203
|
|
712
|
+
Clacton | Liberal Democrats | 887
|
|
713
|
+
Clacton | UK Independence Party | 3357
|
|
714
|
+
Clacton | Green Party | 719
|
|
715
|
+
Clacton | Small or local party, or independent candidate | 449
|
|
716
|
+
Clacton | All other candidates | 499
|
|
717
|
+
|
|
718
|
+
Cleethorpes | Conservative Party | 27321
|
|
719
|
+
Cleethorpes | Labour Party | 16921
|
|
720
|
+
Cleethorpes | Liberal Democrats | 1110
|
|
721
|
+
Cleethorpes | UK Independence Party | 2022
|
|
722
|
+
Cleethorpes | Green Party | 470
|
|
723
|
+
|
|
724
|
+
Colchester | Conservative Party | 24565
|
|
725
|
+
Colchester | Labour Party | 18888
|
|
726
|
+
Colchester | Liberal Democrats | 9087
|
|
727
|
+
Colchester | Green Party | 828
|
|
728
|
+
Colchester | All other candidates | 177
|
|
729
|
+
|
|
730
|
+
Colne Valley | Conservative Party | 27903
|
|
731
|
+
Colne Valley | Labour Party | 28818
|
|
732
|
+
Colne Valley | Liberal Democrats | 2494
|
|
733
|
+
Colne Valley | Green Party | 892
|
|
734
|
+
Colne Valley | All other candidates | 313
|
|
735
|
+
|
|
736
|
+
Congleton | Conservative Party | 31830
|
|
737
|
+
Congleton | Labour Party | 19211
|
|
738
|
+
Congleton | Liberal Democrats | 2902
|
|
739
|
+
Congleton | UK Independence Party | 1289
|
|
740
|
+
Congleton | Green Party | 999
|
|
741
|
+
|
|
742
|
+
Copeland | Conservative Party | 21062
|
|
743
|
+
Copeland | Labour Party | 19367
|
|
744
|
+
Copeland | Liberal Democrats | 1404
|
|
745
|
+
Copeland | UK Independence Party | 1094
|
|
746
|
+
|
|
747
|
+
Corby | Conservative Party | 29534
|
|
748
|
+
Corby | Labour Party | 26844
|
|
749
|
+
Corby | Liberal Democrats | 1545
|
|
750
|
+
Corby | UK Independence Party | 1495
|
|
751
|
+
Corby | Green Party | 579
|
|
752
|
+
|
|
753
|
+
Cornwall North | Conservative Party | 25835
|
|
754
|
+
Cornwall North | Labour Party | 6151
|
|
755
|
+
Cornwall North | Liberal Democrats | 18635
|
|
756
|
+
Cornwall North | All other candidates | 323
|
|
757
|
+
|
|
758
|
+
Cornwall South East | Conservative Party | 29493
|
|
759
|
+
Cornwall South East | Labour Party | 12050
|
|
760
|
+
Cornwall South East | Liberal Democrats | 10336
|
|
761
|
+
Cornwall South East | Green Party | 1335
|
|
762
|
+
|
|
763
|
+
Cotswolds, The | Conservative Party | 36201
|
|
764
|
+
Cotswolds, The | Labour Party | 10702
|
|
765
|
+
Cotswolds, The | Liberal Democrats | 9748
|
|
766
|
+
Cotswolds, The | UK Independence Party | 1197
|
|
767
|
+
Cotswolds, The | Green Party | 1747
|
|
768
|
+
Cotswolds, The | All other candidates | 107
|
|
769
|
+
|
|
770
|
+
Coventry North East | Conservative Party | 13919
|
|
771
|
+
Coventry North East | Labour Party | 29499
|
|
772
|
+
Coventry North East | Liberal Democrats | 1157
|
|
773
|
+
Coventry North East | UK Independence Party | 1350
|
|
774
|
+
Coventry North East | Green Party | 502
|
|
775
|
+
Coventry North East | All other candidates | 81
|
|
776
|
+
|
|
777
|
+
Coventry North West | Conservative Party | 18314
|
|
778
|
+
Coventry North West | Labour Party | 26894
|
|
779
|
+
Coventry North West | Liberal Democrats | 1286
|
|
780
|
+
Coventry North West | UK Independence Party | 1525
|
|
781
|
+
Coventry North West | Green Party | 666
|
|
782
|
+
Coventry North West | Small or local party, or independent candidate | 1164
|
|
783
|
+
|
|
784
|
+
Coventry South | Conservative Party | 17927
|
|
785
|
+
Coventry South | Labour Party | 25874
|
|
786
|
+
Coventry South | Liberal Democrats | 1343
|
|
787
|
+
Coventry South | UK Independence Party | 1037
|
|
788
|
+
Coventry South | Green Party | 604
|
|
789
|
+
Coventry South | All other candidates | 224
|
|
790
|
+
|
|
791
|
+
Crawley | Conservative Party | 25426
|
|
792
|
+
Crawley | Labour Party | 22969
|
|
793
|
+
Crawley | Liberal Democrats | 1878
|
|
794
|
+
|
|
795
|
+
Crewe and Nantwich | Conservative Party | 25880
|
|
796
|
+
Crewe and Nantwich | Labour Party | 25928
|
|
797
|
+
Crewe and Nantwich | Liberal Democrats | 1334
|
|
798
|
+
Crewe and Nantwich | UK Independence Party | 1885
|
|
799
|
+
|
|
800
|
+
Croydon Central | Conservative Party | 24221
|
|
801
|
+
Croydon Central | Labour Party | 29873
|
|
802
|
+
Croydon Central | Liberal Democrats | 1083
|
|
803
|
+
Croydon Central | UK Independence Party | 1040
|
|
804
|
+
Croydon Central | Green Party | 626
|
|
805
|
+
Croydon Central | All other candidates | 248
|
|
806
|
+
|
|
807
|
+
Croydon North | Conservative Party | 11848
|
|
808
|
+
Croydon North | Labour Party | 44213
|
|
809
|
+
Croydon North | Liberal Democrats | 1656
|
|
810
|
+
Croydon North | UK Independence Party | 753
|
|
811
|
+
Croydon North | Green Party | 983
|
|
812
|
+
Croydon North | All other candidates | 170
|
|
813
|
+
|
|
814
|
+
Croydon South | Conservative Party | 33334
|
|
815
|
+
Croydon South | Labour Party | 21928
|
|
816
|
+
Croydon South | Liberal Democrats | 3541
|
|
817
|
+
Croydon South | UK Independence Party | 1116
|
|
818
|
+
Croydon South | Green Party | 1125
|
|
819
|
+
Croydon South | All other candidates | 213
|
|
820
|
+
|
|
821
|
+
Dagenham and Rainham | Conservative Party | 18306
|
|
822
|
+
Dagenham and Rainham | Labour Party | 22958
|
|
823
|
+
Dagenham and Rainham | Liberal Democrats | 465
|
|
824
|
+
Dagenham and Rainham | UK Independence Party | 3246
|
|
825
|
+
Dagenham and Rainham | Green Party | 544
|
|
826
|
+
Dagenham and Rainham | All other candidates | 324
|
|
827
|
+
|
|
828
|
+
Darlington | Conservative Party | 19401
|
|
829
|
+
Darlington | Labour Party | 22681
|
|
830
|
+
Darlington | Liberal Democrats | 1031
|
|
831
|
+
Darlington | UK Independence Party | 1180
|
|
832
|
+
Darlington | Green Party | 524
|
|
833
|
+
|
|
834
|
+
Dartford | Conservative Party | 31210
|
|
835
|
+
Dartford | Labour Party | 18024
|
|
836
|
+
Dartford | Liberal Democrats | 1428
|
|
837
|
+
Dartford | UK Independence Party | 2544
|
|
838
|
+
Dartford | Green Party | 807
|
|
839
|
+
Dartford | All other candidates | 211
|
|
840
|
+
|
|
841
|
+
Daventry | Conservative Party | 35464
|
|
842
|
+
Daventry | Labour Party | 13730
|
|
843
|
+
Daventry | Liberal Democrats | 4015
|
|
844
|
+
Daventry | UK Independence Party | 1497
|
|
845
|
+
Daventry | Green Party | 957
|
|
846
|
+
|
|
847
|
+
Denton and Reddish | Conservative Party | 11084
|
|
848
|
+
Denton and Reddish | Labour Party | 25161
|
|
849
|
+
Denton and Reddish | Liberal Democrats | 853
|
|
850
|
+
Denton and Reddish | UK Independence Party | 1798
|
|
851
|
+
Denton and Reddish | Green Party | 486
|
|
852
|
+
Denton and Reddish | All other candidates | 217
|
|
853
|
+
|
|
854
|
+
Derby North | Conservative Party | 21607
|
|
855
|
+
Derby North | Labour Party | 23622
|
|
856
|
+
Derby North | Liberal Democrats | 2262
|
|
857
|
+
Derby North | UK Independence Party | 1181
|
|
858
|
+
|
|
859
|
+
Derby South | Conservative Party | 15182
|
|
860
|
+
Derby South | Labour Party | 26430
|
|
861
|
+
Derby South | Liberal Democrats | 1229
|
|
862
|
+
Derby South | UK Independence Party | 2011
|
|
863
|
+
Derby South | Green Party | 454
|
|
864
|
+
|
|
865
|
+
Derbyshire Dales | Conservative Party | 29744
|
|
866
|
+
Derbyshire Dales | Labour Party | 15417
|
|
867
|
+
Derbyshire Dales | Liberal Democrats | 3126
|
|
868
|
+
Derbyshire Dales | Green Party | 1002
|
|
869
|
+
Derbyshire Dales | All other candidates | 282
|
|
870
|
+
|
|
871
|
+
Derbyshire Mid | Conservative Party | 29513
|
|
872
|
+
Derbyshire Mid | Labour Party | 17897
|
|
873
|
+
Derbyshire Mid | Liberal Democrats | 1793
|
|
874
|
+
Derbyshire Mid | Green Party | 1168
|
|
875
|
+
|
|
876
|
+
Derbyshire North East | Conservative Party | 24784
|
|
877
|
+
Derbyshire North East | Labour Party | 21923
|
|
878
|
+
Derbyshire North East | Liberal Democrats | 1390
|
|
879
|
+
Derbyshire North East | UK Independence Party | 1565
|
|
880
|
+
Derbyshire North East | Green Party | 719
|
|
881
|
+
|
|
882
|
+
Derbyshire South | Conservative Party | 30907
|
|
883
|
+
Derbyshire South | Labour Party | 18937
|
|
884
|
+
Derbyshire South | Liberal Democrats | 1870
|
|
885
|
+
Derbyshire South | Green Party | 917
|
|
886
|
+
|
|
887
|
+
Devizes | Conservative Party | 31744
|
|
888
|
+
Devizes | Labour Party | 10608
|
|
889
|
+
Devizes | Liberal Democrats | 4706
|
|
890
|
+
Devizes | UK Independence Party | 1706
|
|
891
|
+
Devizes | Green Party | 1606
|
|
892
|
+
Devizes | All other candidates | 223
|
|
893
|
+
|
|
894
|
+
Devon Central | Conservative Party | 31278
|
|
895
|
+
Devon Central | Labour Party | 15598
|
|
896
|
+
Devon Central | Liberal Democrats | 6770
|
|
897
|
+
Devon Central | UK Independence Party | 1326
|
|
898
|
+
Devon Central | Green Party | 1531
|
|
899
|
+
Devon Central | Small or local party, or independent candidate | 871
|
|
900
|
+
Devon Central | All other candidates | 470
|
|
901
|
+
|
|
902
|
+
Devon East | Conservative Party | 29306
|
|
903
|
+
Devon East | Labour Party | 6857
|
|
904
|
+
Devon East | Liberal Democrats | 1468
|
|
905
|
+
Devon East | UK Independence Party | 1203
|
|
906
|
+
Devon East | Small or local party, or independent candidate | 21270
|
|
907
|
+
Devon East | All other candidates | 278
|
|
908
|
+
|
|
909
|
+
Devon North | Conservative Party | 25517
|
|
910
|
+
Devon North | Labour Party | 7063
|
|
911
|
+
Devon North | Liberal Democrats | 21185
|
|
912
|
+
Devon North | UK Independence Party | 1187
|
|
913
|
+
Devon North | Green Party | 753
|
|
914
|
+
|
|
915
|
+
Devon South West | Conservative Party | 31634
|
|
916
|
+
Devon South West | Labour Party | 15818
|
|
917
|
+
Devon South West | Liberal Democrats | 2732
|
|
918
|
+
Devon South West | UK Independence Party | 1540
|
|
919
|
+
Devon South West | Green Party | 1133
|
|
920
|
+
|
|
921
|
+
Devon West and Torridge | Conservative Party | 33612
|
|
922
|
+
Devon West and Torridge | Labour Party | 12926
|
|
923
|
+
Devon West and Torridge | Liberal Democrats | 10526
|
|
924
|
+
Devon West and Torridge | Green Party | 1622
|
|
925
|
+
Devon West and Torridge | All other candidates | 794
|
|
926
|
+
|
|
927
|
+
Dewsbury | Conservative Party | 25493
|
|
928
|
+
Dewsbury | Labour Party | 28814
|
|
929
|
+
Dewsbury | Liberal Democrats | 1214
|
|
930
|
+
Dewsbury | Green Party | 1024
|
|
931
|
+
|
|
932
|
+
Don Valley | Conservative Party | 19182
|
|
933
|
+
Don Valley | Labour Party | 24351
|
|
934
|
+
Don Valley | Liberal Democrats | 856
|
|
935
|
+
Don Valley | Small or local party, or independent candidate | 1599
|
|
936
|
+
|
|
937
|
+
Doncaster Central | Conservative Party | 14784
|
|
938
|
+
Doncaster Central | Labour Party | 24915
|
|
939
|
+
Doncaster Central | Liberal Democrats | 973
|
|
940
|
+
Doncaster Central | Small or local party, or independent candidate | 1346
|
|
941
|
+
Doncaster Central | All other candidates | 1006
|
|
942
|
+
|
|
943
|
+
Doncaster North | Conservative Party | 11687
|
|
944
|
+
Doncaster North | Labour Party | 25711
|
|
945
|
+
Doncaster North | Liberal Democrats | 706
|
|
946
|
+
Doncaster North | UK Independence Party | 2738
|
|
947
|
+
Doncaster North | Small or local party, or independent candidate | 741
|
|
948
|
+
Doncaster North | All other candidates | 729
|
|
949
|
+
|
|
950
|
+
Dorset Mid and Poole North | Conservative Party | 28585
|
|
951
|
+
Dorset Mid and Poole North | Labour Party | 6423
|
|
952
|
+
Dorset Mid and Poole North | Liberal Democrats | 13246
|
|
953
|
+
|
|
954
|
+
Dorset North | Conservative Party | 36169
|
|
955
|
+
Dorset North | Labour Party | 10392
|
|
956
|
+
Dorset North | Liberal Democrats | 7556
|
|
957
|
+
Dorset North | Green Party | 1607
|
|
958
|
+
|
|
959
|
+
Dorset South | Conservative Party | 29135
|
|
960
|
+
Dorset South | Labour Party | 17440
|
|
961
|
+
Dorset South | Liberal Democrats | 3053
|
|
962
|
+
Dorset South | Green Party | 2278
|
|
963
|
+
|
|
964
|
+
Dorset West | Conservative Party | 33081
|
|
965
|
+
Dorset West | Labour Party | 10896
|
|
966
|
+
Dorset West | Liberal Democrats | 13990
|
|
967
|
+
Dorset West | Green Party | 1631
|
|
968
|
+
|
|
969
|
+
Dover | Conservative Party | 27211
|
|
970
|
+
Dover | Labour Party | 20774
|
|
971
|
+
Dover | Liberal Democrats | 1336
|
|
972
|
+
Dover | UK Independence Party | 1722
|
|
973
|
+
Dover | Green Party | 923
|
|
974
|
+
|
|
975
|
+
Dudley North | Conservative Party | 18068
|
|
976
|
+
Dudley North | Labour Party | 18090
|
|
977
|
+
Dudley North | Liberal Democrats | 368
|
|
978
|
+
Dudley North | UK Independence Party | 2144
|
|
979
|
+
Dudley North | Green Party | 240
|
|
980
|
+
|
|
981
|
+
Dudley South | Conservative Party | 21588
|
|
982
|
+
Dudley South | Labour Party | 13858
|
|
983
|
+
Dudley South | Liberal Democrats | 625
|
|
984
|
+
Dudley South | UK Independence Party | 1791
|
|
985
|
+
Dudley South | Green Party | 382
|
|
986
|
+
|
|
987
|
+
Dulwich and West Norwood | Conservative Party | 10940
|
|
988
|
+
Dulwich and West Norwood | Labour Party | 39096
|
|
989
|
+
Dulwich and West Norwood | Liberal Democrats | 4475
|
|
990
|
+
Dulwich and West Norwood | Green Party | 1408
|
|
991
|
+
Dulwich and West Norwood | All other candidates | 224
|
|
992
|
+
|
|
993
|
+
Durham North | Conservative Party | 12978
|
|
994
|
+
Durham North | Labour Party | 25917
|
|
995
|
+
Durham North | Liberal Democrats | 1981
|
|
996
|
+
Durham North | UK Independence Party | 2408
|
|
997
|
+
|
|
998
|
+
Durham North West | Conservative Party | 16516
|
|
999
|
+
Durham North West | Labour Party | 25308
|
|
1000
|
+
Durham North West | Liberal Democrats | 3398
|
|
1001
|
+
Durham North West | UK Independence Party | 2150
|
|
1002
|
+
Durham North West | Green Party | 530
|
|
1003
|
+
|
|
1004
|
+
Durham, City of | Conservative Party | 14408
|
|
1005
|
+
Durham, City of | Labour Party | 26772
|
|
1006
|
+
Durham, City of | Liberal Democrats | 4787
|
|
1007
|
+
Durham, City of | UK Independence Party | 1116
|
|
1008
|
+
Durham, City of | Green Party | 797
|
|
1009
|
+
Durham, City of | All other candidates | 444
|
|
1010
|
+
|
|
1011
|
+
Ealing Central and Acton | Conservative Party | 19230
|
|
1012
|
+
Ealing Central and Acton | Labour Party | 33037
|
|
1013
|
+
Ealing Central and Acton | Liberal Democrats | 3075
|
|
1014
|
+
|
|
1015
|
+
Ealing North | Conservative Party | 14942
|
|
1016
|
+
Ealing North | Labour Party | 34635
|
|
1017
|
+
Ealing North | Liberal Democrats | 1275
|
|
1018
|
+
Ealing North | UK Independence Party | 921
|
|
1019
|
+
Ealing North | Green Party | 743
|
|
1020
|
+
|
|
1021
|
+
Ealing Southall | Conservative Party | 9630
|
|
1022
|
+
Ealing Southall | Labour Party | 31720
|
|
1023
|
+
Ealing Southall | Liberal Democrats | 1892
|
|
1024
|
+
Ealing Southall | UK Independence Party | 504
|
|
1025
|
+
Ealing Southall | Green Party | 1037
|
|
1026
|
+
Ealing Southall | All other candidates | 362
|
|
1027
|
+
|
|
1028
|
+
Easington | Conservative Party | 8260
|
|
1029
|
+
Easington | Labour Party | 23152
|
|
1030
|
+
Easington | Liberal Democrats | 460
|
|
1031
|
+
Easington | UK Independence Party | 1727
|
|
1032
|
+
Easington | Green Party | 410
|
|
1033
|
+
Easington | Small or local party, or independent candidate | 2355
|
|
1034
|
+
|
|
1035
|
+
East Ham | Conservative Party | 7241
|
|
1036
|
+
East Ham | Labour Party | 47124
|
|
1037
|
+
East Ham | Liberal Democrats | 656
|
|
1038
|
+
East Ham | UK Independence Party | 697
|
|
1039
|
+
East Ham | Green Party | 474
|
|
1040
|
+
East Ham | All other candidates | 441
|
|
1041
|
+
|
|
1042
|
+
Eastbourne | Conservative Party | 25315
|
|
1043
|
+
Eastbourne | Labour Party | 4671
|
|
1044
|
+
Eastbourne | Liberal Democrats | 26924
|
|
1045
|
+
Eastbourne | Green Party | 510
|
|
1046
|
+
|
|
1047
|
+
Eastleigh | Conservative Party | 28889
|
|
1048
|
+
Eastleigh | Labour Party | 11454
|
|
1049
|
+
Eastleigh | Liberal Democrats | 14710
|
|
1050
|
+
Eastleigh | UK Independence Party | 1477
|
|
1051
|
+
Eastleigh | Green Party | 750
|
|
1052
|
+
|
|
1053
|
+
Eddisbury | Conservative Party | 29192
|
|
1054
|
+
Eddisbury | Labour Party | 17250
|
|
1055
|
+
Eddisbury | Liberal Democrats | 2804
|
|
1056
|
+
Eddisbury | UK Independence Party | 1109
|
|
1057
|
+
Eddisbury | Green Party | 785
|
|
1058
|
+
Eddisbury | All other candidates | 179
|
|
1059
|
+
|
|
1060
|
+
Edmonton | Conservative Party | 10106
|
|
1061
|
+
Edmonton | Labour Party | 31221
|
|
1062
|
+
Edmonton | Liberal Democrats | 858
|
|
1063
|
+
Edmonton | UK Independence Party | 860
|
|
1064
|
+
Edmonton | Green Party | 633
|
|
1065
|
+
|
|
1066
|
+
Ellesmere Port and Neston | Conservative Party | 18747
|
|
1067
|
+
Ellesmere Port and Neston | Labour Party | 30137
|
|
1068
|
+
Ellesmere Port and Neston | Liberal Democrats | 892
|
|
1069
|
+
Ellesmere Port and Neston | UK Independence Party | 821
|
|
1070
|
+
Ellesmere Port and Neston | Green Party | 342
|
|
1071
|
+
|
|
1072
|
+
Elmet and Rothwell | Conservative Party | 32352
|
|
1073
|
+
Elmet and Rothwell | Labour Party | 22547
|
|
1074
|
+
Elmet and Rothwell | Liberal Democrats | 2606
|
|
1075
|
+
Elmet and Rothwell | Green Party | 995
|
|
1076
|
+
Elmet and Rothwell | Small or local party, or independent candidate | 1042
|
|
1077
|
+
|
|
1078
|
+
Eltham | Conservative Party | 18832
|
|
1079
|
+
Eltham | Labour Party | 25128
|
|
1080
|
+
Eltham | Liberal Democrats | 1457
|
|
1081
|
+
Eltham | All other candidates | 738
|
|
1082
|
+
|
|
1083
|
+
Enfield North | Conservative Party | 17930
|
|
1084
|
+
Enfield North | Labour Party | 28177
|
|
1085
|
+
Enfield North | Liberal Democrats | 1036
|
|
1086
|
+
Enfield North | UK Independence Party | 848
|
|
1087
|
+
Enfield North | Green Party | 574
|
|
1088
|
+
|
|
1089
|
+
Enfield Southgate | Conservative Party | 20634
|
|
1090
|
+
Enfield Southgate | Labour Party | 24989
|
|
1091
|
+
Enfield Southgate | Liberal Democrats | 1925
|
|
1092
|
+
Enfield Southgate | Green Party | 780
|
|
1093
|
+
|
|
1094
|
+
Epping Forest | Conservative Party | 31462
|
|
1095
|
+
Epping Forest | Labour Party | 13219
|
|
1096
|
+
Epping Forest | Liberal Democrats | 2884
|
|
1097
|
+
Epping Forest | UK Independence Party | 1871
|
|
1098
|
+
Epping Forest | Green Party | 1233
|
|
1099
|
+
Epping Forest | All other candidates | 110
|
|
1100
|
+
|
|
1101
|
+
Epsom and Ewell | Conservative Party | 35313
|
|
1102
|
+
Epsom and Ewell | Labour Party | 14838
|
|
1103
|
+
Epsom and Ewell | Liberal Democrats | 7401
|
|
1104
|
+
Epsom and Ewell | Green Party | 1714
|
|
1105
|
+
|
|
1106
|
+
Erewash | Conservative Party | 25939
|
|
1107
|
+
Erewash | Labour Party | 21405
|
|
1108
|
+
Erewash | Liberal Democrats | 1243
|
|
1109
|
+
Erewash | Green Party | 675
|
|
1110
|
+
Erewash | All other candidates | 519
|
|
1111
|
+
|
|
1112
|
+
Erith and Thamesmead | Conservative Party | 15571
|
|
1113
|
+
Erith and Thamesmead | Labour Party | 25585
|
|
1114
|
+
Erith and Thamesmead | Liberal Democrats | 750
|
|
1115
|
+
Erith and Thamesmead | UK Independence Party | 1728
|
|
1116
|
+
Erith and Thamesmead | Green Party | 507
|
|
1117
|
+
Erith and Thamesmead | All other candidates | 323
|
|
1118
|
+
|
|
1119
|
+
Esher and Walton | Conservative Party | 35071
|
|
1120
|
+
Esher and Walton | Labour Party | 11773
|
|
1121
|
+
Esher and Walton | Liberal Democrats | 10374
|
|
1122
|
+
Esher and Walton | UK Independence Party | 1034
|
|
1123
|
+
Esher and Walton | Green Party | 1074
|
|
1124
|
+
Esher and Walton | All other candidates | 516
|
|
1125
|
+
|
|
1126
|
+
Exeter | Conservative Party | 18219
|
|
1127
|
+
Exeter | Labour Party | 34336
|
|
1128
|
+
Exeter | Liberal Democrats | 1562
|
|
1129
|
+
Exeter | Green Party | 1027
|
|
1130
|
+
Exeter | All other candidates | 279
|
|
1131
|
+
|
|
1132
|
+
Fareham | Conservative Party | 35915
|
|
1133
|
+
Fareham | Labour Party | 14360
|
|
1134
|
+
Fareham | Liberal Democrats | 3896
|
|
1135
|
+
Fareham | UK Independence Party | 1541
|
|
1136
|
+
Fareham | Green Party | 1302
|
|
1137
|
+
|
|
1138
|
+
Faversham and Kent Mid | Conservative Party | 30390
|
|
1139
|
+
Faversham and Kent Mid | Labour Party | 12977
|
|
1140
|
+
Faversham and Kent Mid | Liberal Democrats | 3249
|
|
1141
|
+
Faversham and Kent Mid | UK Independence Party | 1702
|
|
1142
|
+
Faversham and Kent Mid | Green Party | 1431
|
|
1143
|
+
|
|
1144
|
+
Feltham and Heston | Conservative Party | 16859
|
|
1145
|
+
Feltham and Heston | Labour Party | 32462
|
|
1146
|
+
Feltham and Heston | Liberal Democrats | 1387
|
|
1147
|
+
Feltham and Heston | UK Independence Party | 1510
|
|
1148
|
+
Feltham and Heston | Green Party | 809
|
|
1149
|
+
|
|
1150
|
+
Filton and Bradley Stoke | Conservative Party | 25331
|
|
1151
|
+
Filton and Bradley Stoke | Labour Party | 21149
|
|
1152
|
+
Filton and Bradley Stoke | Liberal Democrats | 3052
|
|
1153
|
+
Filton and Bradley Stoke | Green Party | 1162
|
|
1154
|
+
|
|
1155
|
+
Finchley and Golders Green | Conservative Party | 24599
|
|
1156
|
+
Finchley and Golders Green | Labour Party | 22942
|
|
1157
|
+
Finchley and Golders Green | Liberal Democrats | 3463
|
|
1158
|
+
Finchley and Golders Green | UK Independence Party | 462
|
|
1159
|
+
Finchley and Golders Green | Green Party | 919
|
|
1160
|
+
|
|
1161
|
+
Folkestone and Hythe | Conservative Party | 32197
|
|
1162
|
+
Folkestone and Hythe | Labour Party | 16786
|
|
1163
|
+
Folkestone and Hythe | Liberal Democrats | 4222
|
|
1164
|
+
Folkestone and Hythe | UK Independence Party | 2565
|
|
1165
|
+
Folkestone and Hythe | Green Party | 2498
|
|
1166
|
+
Folkestone and Hythe | All other candidates | 607
|
|
1167
|
+
|
|
1168
|
+
Forest of Dean | Conservative Party | 28096
|
|
1169
|
+
Forest of Dean | Labour Party | 18594
|
|
1170
|
+
Forest of Dean | Liberal Democrats | 2029
|
|
1171
|
+
Forest of Dean | UK Independence Party | 1237
|
|
1172
|
+
Forest of Dean | Green Party | 1241
|
|
1173
|
+
Forest of Dean | All other candidates | 570
|
|
1174
|
+
|
|
1175
|
+
Fylde | Conservative Party | 27334
|
|
1176
|
+
Fylde | Labour Party | 15529
|
|
1177
|
+
Fylde | Liberal Democrats | 2341
|
|
1178
|
+
Fylde | Green Party | 1263
|
|
1179
|
+
|
|
1180
|
+
Gainsborough | Conservative Party | 31790
|
|
1181
|
+
Gainsborough | Labour Party | 14767
|
|
1182
|
+
Gainsborough | Liberal Democrats | 3630
|
|
1183
|
+
Gainsborough | Green Party | 1238
|
|
1184
|
+
|
|
1185
|
+
Garston and Halewood | Conservative Party | 9450
|
|
1186
|
+
Garston and Halewood | Labour Party | 41599
|
|
1187
|
+
Garston and Halewood | Liberal Democrats | 1723
|
|
1188
|
+
Garston and Halewood | Green Party | 750
|
|
1189
|
+
|
|
1190
|
+
Gateshead | Conservative Party | 10076
|
|
1191
|
+
Gateshead | Labour Party | 27426
|
|
1192
|
+
Gateshead | Liberal Democrats | 1709
|
|
1193
|
+
Gateshead | UK Independence Party | 2281
|
|
1194
|
+
Gateshead | Green Party | 611
|
|
1195
|
+
|
|
1196
|
+
Gedling | Conservative Party | 22139
|
|
1197
|
+
Gedling | Labour Party | 26833
|
|
1198
|
+
Gedling | Liberal Democrats | 1052
|
|
1199
|
+
Gedling | UK Independence Party | 1143
|
|
1200
|
+
Gedling | Green Party | 515
|
|
1201
|
+
|
|
1202
|
+
Gillingham and Rainham | Conservative Party | 27091
|
|
1203
|
+
Gillingham and Rainham | Labour Party | 17661
|
|
1204
|
+
Gillingham and Rainham | Liberal Democrats | 1372
|
|
1205
|
+
Gillingham and Rainham | UK Independence Party | 2097
|
|
1206
|
+
Gillingham and Rainham | Green Party | 520
|
|
1207
|
+
Gillingham and Rainham | All other candidates | 127
|
|
1208
|
+
|
|
1209
|
+
Gloucester | Conservative Party | 27208
|
|
1210
|
+
Gloucester | Labour Party | 21688
|
|
1211
|
+
Gloucester | Liberal Democrats | 2716
|
|
1212
|
+
Gloucester | UK Independence Party | 1495
|
|
1213
|
+
Gloucester | Green Party | 754
|
|
1214
|
+
Gloucester | All other candidates | 210
|
|
1215
|
+
|
|
1216
|
+
Gosport | Conservative Party | 30647
|
|
1217
|
+
Gosport | Labour Party | 13436
|
|
1218
|
+
Gosport | Liberal Democrats | 2328
|
|
1219
|
+
Gosport | UK Independence Party | 1790
|
|
1220
|
+
Gosport | Green Party | 1024
|
|
1221
|
+
Gosport | All other candidates | 256
|
|
1222
|
+
|
|
1223
|
+
Grantham and Stamford | Conservative Party | 35090
|
|
1224
|
+
Grantham and Stamford | Labour Party | 14996
|
|
1225
|
+
Grantham and Stamford | Liberal Democrats | 3120
|
|
1226
|
+
Grantham and Stamford | UK Independence Party | 1745
|
|
1227
|
+
Grantham and Stamford | Green Party | 782
|
|
1228
|
+
Grantham and Stamford | Small or local party, or independent candidate | 860
|
|
1229
|
+
|
|
1230
|
+
Gravesham | Conservative Party | 27237
|
|
1231
|
+
Gravesham | Labour Party | 17890
|
|
1232
|
+
Gravesham | Liberal Democrats | 1210
|
|
1233
|
+
Gravesham | UK Independence Party | 1742
|
|
1234
|
+
Gravesham | Green Party | 723
|
|
1235
|
+
Gravesham | All other candidates | 195
|
|
1236
|
+
|
|
1237
|
+
Great Grimsby | Conservative Party | 14980
|
|
1238
|
+
Great Grimsby | Labour Party | 17545
|
|
1239
|
+
Great Grimsby | Liberal Democrats | 954
|
|
1240
|
+
Great Grimsby | UK Independence Party | 1648
|
|
1241
|
+
Great Grimsby | All other candidates | 394
|
|
1242
|
+
|
|
1243
|
+
Great Yarmouth | Conservative Party | 23901
|
|
1244
|
+
Great Yarmouth | Labour Party | 15928
|
|
1245
|
+
Great Yarmouth | Liberal Democrats | 987
|
|
1246
|
+
Great Yarmouth | UK Independence Party | 2767
|
|
1247
|
+
Great Yarmouth | Green Party | 563
|
|
1248
|
+
|
|
1249
|
+
Greenwich and Woolwich | Conservative Party | 13501
|
|
1250
|
+
Greenwich and Woolwich | Labour Party | 34215
|
|
1251
|
+
Greenwich and Woolwich | Liberal Democrats | 3785
|
|
1252
|
+
Greenwich and Woolwich | Green Party | 1605
|
|
1253
|
+
|
|
1254
|
+
Guildford | Conservative Party | 30295
|
|
1255
|
+
Guildford | Labour Party | 10545
|
|
1256
|
+
Guildford | Liberal Democrats | 13255
|
|
1257
|
+
Guildford | Green Party | 1152
|
|
1258
|
+
Guildford | All other candidates | 262
|
|
1259
|
+
|
|
1260
|
+
Hackney North and Stoke Newington | Conservative Party | 7126
|
|
1261
|
+
Hackney North and Stoke Newington | Labour Party | 42265
|
|
1262
|
+
Hackney North and Stoke Newington | Liberal Democrats | 3817
|
|
1263
|
+
Hackney North and Stoke Newington | Green Party | 2606
|
|
1264
|
+
Hackney North and Stoke Newington | All other candidates | 484
|
|
1265
|
+
|
|
1266
|
+
Hackney South and Shoreditch | Conservative Party | 6043
|
|
1267
|
+
Hackney South and Shoreditch | Labour Party | 43974
|
|
1268
|
+
Hackney South and Shoreditch | Liberal Democrats | 3168
|
|
1269
|
+
Hackney South and Shoreditch | Green Party | 1522
|
|
1270
|
+
Hackney South and Shoreditch | All other candidates | 647
|
|
1271
|
+
|
|
1272
|
+
Halesowen and Rowley Regis | Conservative Party | 23012
|
|
1273
|
+
Halesowen and Rowley Regis | Labour Party | 17759
|
|
1274
|
+
Halesowen and Rowley Regis | Liberal Democrats | 859
|
|
1275
|
+
Halesowen and Rowley Regis | UK Independence Party | 2126
|
|
1276
|
+
Halesowen and Rowley Regis | Green Party | 440
|
|
1277
|
+
Halesowen and Rowley Regis | All other candidates | 183
|
|
1278
|
+
|
|
1279
|
+
Halifax | Conservative Party | 20131
|
|
1280
|
+
Halifax | Labour Party | 25507
|
|
1281
|
+
Halifax | Liberal Democrats | 1070
|
|
1282
|
+
Halifax | UK Independence Party | 1568
|
|
1283
|
+
|
|
1284
|
+
Haltemprice and Howden | Conservative Party | 31355
|
|
1285
|
+
Haltemprice and Howden | Labour Party | 15950
|
|
1286
|
+
Haltemprice and Howden | Liberal Democrats | 2482
|
|
1287
|
+
Haltemprice and Howden | Green Party | 711
|
|
1288
|
+
Haltemprice and Howden | Small or local party, or independent candidate | 942
|
|
1289
|
+
|
|
1290
|
+
Halton | Conservative Party | 10710
|
|
1291
|
+
Halton | Labour Party | 36115
|
|
1292
|
+
Halton | Liberal Democrats | 896
|
|
1293
|
+
Halton | UK Independence Party | 1488
|
|
1294
|
+
Halton | All other candidates | 309
|
|
1295
|
+
|
|
1296
|
+
Hammersmith | Conservative Party | 14724
|
|
1297
|
+
Hammersmith | Labour Party | 33375
|
|
1298
|
+
Hammersmith | Liberal Democrats | 2802
|
|
1299
|
+
Hammersmith | UK Independence Party | 507
|
|
1300
|
+
Hammersmith | Green Party | 800
|
|
1301
|
+
Hammersmith | All other candidates | 44
|
|
1302
|
+
|
|
1303
|
+
Hampshire East | Conservative Party | 35263
|
|
1304
|
+
Hampshire East | Labour Party | 9411
|
|
1305
|
+
Hampshire East | Liberal Democrats | 8403
|
|
1306
|
+
Hampshire East | Green Party | 1760
|
|
1307
|
+
Hampshire East | All other candidates | 571
|
|
1308
|
+
|
|
1309
|
+
Hampshire North East | Conservative Party | 37754
|
|
1310
|
+
Hampshire North East | Labour Party | 9982
|
|
1311
|
+
Hampshire North East | Liberal Democrats | 6987
|
|
1312
|
+
Hampshire North East | UK Independence Party | 1061
|
|
1313
|
+
Hampshire North East | Green Party | 1476
|
|
1314
|
+
Hampshire North East | All other candidates | 367
|
|
1315
|
+
|
|
1316
|
+
Hampshire North West | Conservative Party | 36471
|
|
1317
|
+
Hampshire North West | Labour Party | 13792
|
|
1318
|
+
Hampshire North West | Liberal Democrats | 5708
|
|
1319
|
+
Hampshire North West | UK Independence Party | 1467
|
|
1320
|
+
Hampshire North West | Green Party | 1334
|
|
1321
|
+
|
|
1322
|
+
Hampstead and Kilburn | Conservative Party | 18904
|
|
1323
|
+
Hampstead and Kilburn | Labour Party | 34464
|
|
1324
|
+
Hampstead and Kilburn | Liberal Democrats | 4100
|
|
1325
|
+
Hampstead and Kilburn | Green Party | 742
|
|
1326
|
+
Hampstead and Kilburn | All other candidates | 197
|
|
1327
|
+
|
|
1328
|
+
Harborough | Conservative Party | 30135
|
|
1329
|
+
Harborough | Labour Party | 17706
|
|
1330
|
+
Harborough | Liberal Democrats | 7286
|
|
1331
|
+
Harborough | UK Independence Party | 1361
|
|
1332
|
+
Harborough | Green Party | 1110
|
|
1333
|
+
|
|
1334
|
+
Harlow | Conservative Party | 24230
|
|
1335
|
+
Harlow | Labour Party | 17199
|
|
1336
|
+
Harlow | Liberal Democrats | 970
|
|
1337
|
+
Harlow | UK Independence Party | 1787
|
|
1338
|
+
Harlow | Green Party | 660
|
|
1339
|
+
|
|
1340
|
+
Harrogate and Knaresborough | Conservative Party | 31477
|
|
1341
|
+
Harrogate and Knaresborough | Labour Party | 11395
|
|
1342
|
+
Harrogate and Knaresborough | Liberal Democrats | 13309
|
|
1343
|
+
Harrogate and Knaresborough | All other candidates | 559
|
|
1344
|
+
|
|
1345
|
+
Harrow East | Conservative Party | 25129
|
|
1346
|
+
Harrow East | Labour Party | 23372
|
|
1347
|
+
Harrow East | Liberal Democrats | 1573
|
|
1348
|
+
Harrow East | Green Party | 771
|
|
1349
|
+
|
|
1350
|
+
Harrow West | Conservative Party | 17326
|
|
1351
|
+
Harrow West | Labour Party | 30640
|
|
1352
|
+
Harrow West | Liberal Democrats | 1267
|
|
1353
|
+
Harrow West | UK Independence Party | 470
|
|
1354
|
+
Harrow West | Green Party | 652
|
|
1355
|
+
|
|
1356
|
+
Hartlepool | Conservative Party | 14319
|
|
1357
|
+
Hartlepool | Labour Party | 21969
|
|
1358
|
+
Hartlepool | Liberal Democrats | 746
|
|
1359
|
+
Hartlepool | UK Independence Party | 4801
|
|
1360
|
+
|
|
1361
|
+
Harwich and North Essex | Conservative Party | 29921
|
|
1362
|
+
Harwich and North Essex | Labour Party | 15565
|
|
1363
|
+
Harwich and North Essex | Liberal Democrats | 2787
|
|
1364
|
+
Harwich and North Essex | UK Independence Party | 1685
|
|
1365
|
+
Harwich and North Essex | Green Party | 1042
|
|
1366
|
+
Harwich and North Essex | All other candidates | 141
|
|
1367
|
+
|
|
1368
|
+
Hastings and Rye | Conservative Party | 25668
|
|
1369
|
+
Hastings and Rye | Labour Party | 25322
|
|
1370
|
+
Hastings and Rye | Liberal Democrats | 1885
|
|
1371
|
+
Hastings and Rye | UK Independence Party | 1479
|
|
1372
|
+
Hastings and Rye | All other candidates | 412
|
|
1373
|
+
|
|
1374
|
+
Havant | Conservative Party | 27676
|
|
1375
|
+
Havant | Labour Party | 11720
|
|
1376
|
+
Havant | Liberal Democrats | 2801
|
|
1377
|
+
Havant | UK Independence Party | 2011
|
|
1378
|
+
Havant | Green Party | 1122
|
|
1379
|
+
Havant | All other candidates | 984
|
|
1380
|
+
|
|
1381
|
+
Hayes and Harlington | Conservative Party | 13681
|
|
1382
|
+
Hayes and Harlington | Labour Party | 31796
|
|
1383
|
+
Hayes and Harlington | Liberal Democrats | 601
|
|
1384
|
+
Hayes and Harlington | UK Independence Party | 1153
|
|
1385
|
+
Hayes and Harlington | Green Party | 571
|
|
1386
|
+
|
|
1387
|
+
Hazel Grove | Conservative Party | 20047
|
|
1388
|
+
Hazel Grove | Labour Party | 9036
|
|
1389
|
+
Hazel Grove | Liberal Democrats | 14533
|
|
1390
|
+
Hazel Grove | Green Party | 516
|
|
1391
|
+
|
|
1392
|
+
Hemel Hempstead | Conservative Party | 28735
|
|
1393
|
+
Hemel Hempstead | Labour Party | 19290
|
|
1394
|
+
Hemel Hempstead | Liberal Democrats | 3233
|
|
1395
|
+
Hemel Hempstead | Green Party | 1024
|
|
1396
|
+
|
|
1397
|
+
Hemsworth | Conservative Party | 15566
|
|
1398
|
+
Hemsworth | Labour Party | 25740
|
|
1399
|
+
Hemsworth | Liberal Democrats | 912
|
|
1400
|
+
Hemsworth | UK Independence Party | 2591
|
|
1401
|
+
Hemsworth | Small or local party, or independent candidate | 1135
|
|
1402
|
+
|
|
1403
|
+
Hendon | Conservative Party | 25078
|
|
1404
|
+
Hendon | Labour Party | 24006
|
|
1405
|
+
Hendon | Liberal Democrats | 1985
|
|
1406
|
+
Hendon | UK Independence Party | 568
|
|
1407
|
+
Hendon | Green Party | 578
|
|
1408
|
+
|
|
1409
|
+
Henley | Conservative Party | 33749
|
|
1410
|
+
Henley | Labour Party | 11455
|
|
1411
|
+
Henley | Liberal Democrats | 8485
|
|
1412
|
+
Henley | UK Independence Party | 1154
|
|
1413
|
+
Henley | Green Party | 1864
|
|
1414
|
+
Henley | All other candidates | 392
|
|
1415
|
+
|
|
1416
|
+
Hereford and South Herefordshire | Conservative Party | 27004
|
|
1417
|
+
Hereford and South Herefordshire | Labour Party | 11991
|
|
1418
|
+
Hereford and South Herefordshire | Liberal Democrats | 3556
|
|
1419
|
+
Hereford and South Herefordshire | UK Independence Party | 1153
|
|
1420
|
+
Hereford and South Herefordshire | Green Party | 1220
|
|
1421
|
+
Hereford and South Herefordshire | Small or local party, or independent candidate | 5560
|
|
1422
|
+
|
|
1423
|
+
Herefordshire North | Conservative Party | 31097
|
|
1424
|
+
Herefordshire North | Labour Party | 9495
|
|
1425
|
+
Herefordshire North | Liberal Democrats | 5874
|
|
1426
|
+
Herefordshire North | Green Party | 2771
|
|
1427
|
+
Herefordshire North | All other candidates | 940
|
|
1428
|
+
|
|
1429
|
+
Hertford and Stortford | Conservative Party | 36184
|
|
1430
|
+
Hertford and Stortford | Labour Party | 17149
|
|
1431
|
+
Hertford and Stortford | Liberal Democrats | 4845
|
|
1432
|
+
Hertford and Stortford | Green Party | 1814
|
|
1433
|
+
|
|
1434
|
+
Hertfordshire North East | Conservative Party | 32587
|
|
1435
|
+
Hertfordshire North East | Labour Party | 15752
|
|
1436
|
+
Hertfordshire North East | Liberal Democrats | 4276
|
|
1437
|
+
Hertfordshire North East | Green Party | 2965
|
|
1438
|
+
|
|
1439
|
+
Hertfordshire South West | Conservative Party | 35128
|
|
1440
|
+
Hertfordshire South West | Labour Party | 15578
|
|
1441
|
+
Hertfordshire South West | Liberal Democrats | 7078
|
|
1442
|
+
Hertfordshire South West | UK Independence Party | 1293
|
|
1443
|
+
Hertfordshire South West | Green Party | 1576
|
|
1444
|
+
|
|
1445
|
+
Hertsmere | Conservative Party | 31928
|
|
1446
|
+
Hertsmere | Labour Party | 14977
|
|
1447
|
+
Hertsmere | Liberal Democrats | 2794
|
|
1448
|
+
Hertsmere | UK Independence Party | 1564
|
|
1449
|
+
Hertsmere | Green Party | 990
|
|
1450
|
+
|
|
1451
|
+
Hexham | Conservative Party | 24996
|
|
1452
|
+
Hexham | Labour Party | 15760
|
|
1453
|
+
Hexham | Liberal Democrats | 3285
|
|
1454
|
+
Hexham | UK Independence Party | 930
|
|
1455
|
+
Hexham | Green Party | 1253
|
|
1456
|
+
|
|
1457
|
+
Heywood and Middleton | Conservative Party | 18961
|
|
1458
|
+
Heywood and Middleton | Labour Party | 26578
|
|
1459
|
+
Heywood and Middleton | Liberal Democrats | 1087
|
|
1460
|
+
Heywood and Middleton | UK Independence Party | 3239
|
|
1461
|
+
|
|
1462
|
+
High Peak | Conservative Party | 24431
|
|
1463
|
+
High Peak | Labour Party | 26753
|
|
1464
|
+
High Peak | Liberal Democrats | 2669
|
|
1465
|
+
|
|
1466
|
+
Hitchin and Harpenden | Conservative Party | 31189
|
|
1467
|
+
Hitchin and Harpenden | Labour Party | 19158
|
|
1468
|
+
Hitchin and Harpenden | Liberal Democrats | 6236
|
|
1469
|
+
Hitchin and Harpenden | Green Party | 1329
|
|
1470
|
+
Hitchin and Harpenden | All other candidates | 871
|
|
1471
|
+
|
|
1472
|
+
Holborn and St Pancras | Conservative Party | 10834
|
|
1473
|
+
Holborn and St Pancras | Labour Party | 41343
|
|
1474
|
+
Holborn and St Pancras | Liberal Democrats | 4020
|
|
1475
|
+
Holborn and St Pancras | UK Independence Party | 727
|
|
1476
|
+
Holborn and St Pancras | Green Party | 1980
|
|
1477
|
+
Holborn and St Pancras | All other candidates | 93
|
|
1478
|
+
|
|
1479
|
+
Hornchurch and Upminster | Conservative Party | 33750
|
|
1480
|
+
Hornchurch and Upminster | Labour Party | 16027
|
|
1481
|
+
Hornchurch and Upminster | Liberal Democrats | 1371
|
|
1482
|
+
Hornchurch and Upminster | UK Independence Party | 3502
|
|
1483
|
+
Hornchurch and Upminster | Green Party | 1077
|
|
1484
|
+
Hornchurch and Upminster | All other candidates | 380
|
|
1485
|
+
|
|
1486
|
+
Hornsey and Wood Green | Conservative Party | 9246
|
|
1487
|
+
Hornsey and Wood Green | Labour Party | 40738
|
|
1488
|
+
Hornsey and Wood Green | Liberal Democrats | 10000
|
|
1489
|
+
Hornsey and Wood Green | UK Independence Party | 429
|
|
1490
|
+
Hornsey and Wood Green | Green Party | 1181
|
|
1491
|
+
Hornsey and Wood Green | Small or local party, or independent candidate | 551
|
|
1492
|
+
Hornsey and Wood Green | All other candidates | 148
|
|
1493
|
+
|
|
1494
|
+
Horsham | Conservative Party | 36906
|
|
1495
|
+
Horsham | Labour Party | 13422
|
|
1496
|
+
Horsham | Liberal Democrats | 7644
|
|
1497
|
+
Horsham | UK Independence Party | 1533
|
|
1498
|
+
Horsham | Green Party | 1844
|
|
1499
|
+
Horsham | All other candidates | 638
|
|
1500
|
+
|
|
1501
|
+
Houghton and Sunderland South | Conservative Party | 12324
|
|
1502
|
+
Houghton and Sunderland South | Labour Party | 24665
|
|
1503
|
+
Houghton and Sunderland South | Liberal Democrats | 908
|
|
1504
|
+
Houghton and Sunderland South | UK Independence Party | 2379
|
|
1505
|
+
Houghton and Sunderland South | Green Party | 725
|
|
1506
|
+
Houghton and Sunderland South | All other candidates | 479
|
|
1507
|
+
|
|
1508
|
+
Hove | Conservative Party | 18185
|
|
1509
|
+
Hove | Labour Party | 36942
|
|
1510
|
+
Hove | Liberal Democrats | 1311
|
|
1511
|
+
Hove | Green Party | 971
|
|
1512
|
+
Hove | All other candidates | 187
|
|
1513
|
+
|
|
1514
|
+
Huddersfield | Conservative Party | 14465
|
|
1515
|
+
Huddersfield | Labour Party | 26470
|
|
1516
|
+
Huddersfield | Liberal Democrats | 1155
|
|
1517
|
+
Huddersfield | Green Party | 1395
|
|
1518
|
+
Huddersfield | All other candidates | 349
|
|
1519
|
+
|
|
1520
|
+
Hull East | Conservative Party | 10959
|
|
1521
|
+
Hull East | Labour Party | 21355
|
|
1522
|
+
Hull East | Liberal Democrats | 1258
|
|
1523
|
+
Hull East | UK Independence Party | 2573
|
|
1524
|
+
Hull East | Green Party | 493
|
|
1525
|
+
|
|
1526
|
+
Hull North | Conservative Party | 9363
|
|
1527
|
+
Hull North | Labour Party | 23685
|
|
1528
|
+
Hull North | Liberal Democrats | 1869
|
|
1529
|
+
Hull North | UK Independence Party | 1601
|
|
1530
|
+
Hull North | Green Party | 644
|
|
1531
|
+
|
|
1532
|
+
Hull West and Hessle | Conservative Party | 10317
|
|
1533
|
+
Hull West and Hessle | Labour Party | 18342
|
|
1534
|
+
Hull West and Hessle | Liberal Democrats | 2210
|
|
1535
|
+
Hull West and Hessle | UK Independence Party | 1399
|
|
1536
|
+
Hull West and Hessle | Green Party | 332
|
|
1537
|
+
Hull West and Hessle | Small or local party, or independent candidate | 1898
|
|
1538
|
+
Hull West and Hessle | All other candidates | 67
|
|
1539
|
+
|
|
1540
|
+
Huntingdon | Conservative Party | 32915
|
|
1541
|
+
Huntingdon | Labour Party | 18440
|
|
1542
|
+
Huntingdon | Liberal Democrats | 5090
|
|
1543
|
+
Huntingdon | UK Independence Party | 2180
|
|
1544
|
+
Huntingdon | Green Party | 1095
|
|
1545
|
+
|
|
1546
|
+
Hyndburn | Conservative Party | 18305
|
|
1547
|
+
Hyndburn | Labour Party | 24120
|
|
1548
|
+
Hyndburn | Liberal Democrats | 824
|
|
1549
|
+
Hyndburn | UK Independence Party | 1953
|
|
1550
|
+
|
|
1551
|
+
Ilford North | Conservative Party | 20950
|
|
1552
|
+
Ilford North | Labour Party | 30589
|
|
1553
|
+
Ilford North | Liberal Democrats | 1034
|
|
1554
|
+
Ilford North | All other candidates | 368
|
|
1555
|
+
|
|
1556
|
+
Ilford South | Conservative Party | 12077
|
|
1557
|
+
Ilford South | Labour Party | 43724
|
|
1558
|
+
Ilford South | Liberal Democrats | 772
|
|
1559
|
+
Ilford South | UK Independence Party | 477
|
|
1560
|
+
Ilford South | Green Party | 542
|
|
1561
|
+
Ilford South | All other candidates | 65
|
|
1562
|
+
|
|
1563
|
+
Ipswich | Conservative Party | 23393
|
|
1564
|
+
Ipswich | Labour Party | 24224
|
|
1565
|
+
Ipswich | Liberal Democrats | 1187
|
|
1566
|
+
Ipswich | UK Independence Party | 1372
|
|
1567
|
+
Ipswich | Green Party | 840
|
|
1568
|
+
Ipswich | All other candidates | 121
|
|
1569
|
+
|
|
1570
|
+
Isle of Wight | Conservative Party | 38190
|
|
1571
|
+
Isle of Wight | Labour Party | 17121
|
|
1572
|
+
Isle of Wight | Liberal Democrats | 2740
|
|
1573
|
+
Isle of Wight | UK Independence Party | 1921
|
|
1574
|
+
Isle of Wight | Green Party | 12915
|
|
1575
|
+
Isle of Wight | Small or local party, or independent candidate | 1592
|
|
1576
|
+
|
|
1577
|
+
Islington North | Conservative Party | 6871
|
|
1578
|
+
Islington North | Labour Party | 40086
|
|
1579
|
+
Islington North | Liberal Democrats | 4946
|
|
1580
|
+
Islington North | UK Independence Party | 413
|
|
1581
|
+
Islington North | Green Party | 2229
|
|
1582
|
+
Islington North | All other candidates | 383
|
|
1583
|
+
|
|
1584
|
+
Islington South and Finsbury | Conservative Party | 9925
|
|
1585
|
+
Islington South and Finsbury | Labour Party | 30188
|
|
1586
|
+
Islington South and Finsbury | Liberal Democrats | 5809
|
|
1587
|
+
Islington South and Finsbury | UK Independence Party | 929
|
|
1588
|
+
Islington South and Finsbury | Green Party | 1198
|
|
1589
|
+
|
|
1590
|
+
Jarrow | Conservative Party | 10757
|
|
1591
|
+
Jarrow | Labour Party | 28020
|
|
1592
|
+
Jarrow | Liberal Democrats | 1163
|
|
1593
|
+
Jarrow | UK Independence Party | 2338
|
|
1594
|
+
Jarrow | Green Party | 745
|
|
1595
|
+
|
|
1596
|
+
Keighley | Conservative Party | 23817
|
|
1597
|
+
Keighley | Labour Party | 24066
|
|
1598
|
+
Keighley | Liberal Democrats | 1226
|
|
1599
|
+
Keighley | UK Independence Party | 1291
|
|
1600
|
+
Keighley | Green Party | 790
|
|
1601
|
+
Keighley | All other candidates | 534
|
|
1602
|
+
|
|
1603
|
+
Kenilworth and Southam | Conservative Party | 31207
|
|
1604
|
+
Kenilworth and Southam | Labour Party | 13121
|
|
1605
|
+
Kenilworth and Southam | Liberal Democrats | 4921
|
|
1606
|
+
Kenilworth and Southam | UK Independence Party | 929
|
|
1607
|
+
Kenilworth and Southam | Green Party | 1133
|
|
1608
|
+
|
|
1609
|
+
Kensington | Conservative Party | 16313
|
|
1610
|
+
Kensington | Labour Party | 16333
|
|
1611
|
+
Kensington | Liberal Democrats | 4724
|
|
1612
|
+
Kensington | Green Party | 767
|
|
1613
|
+
Kensington | All other candidates | 540
|
|
1614
|
+
|
|
1615
|
+
Kettering | Conservative Party | 28616
|
|
1616
|
+
Kettering | Labour Party | 18054
|
|
1617
|
+
Kettering | Liberal Democrats | 1618
|
|
1618
|
+
Kettering | Green Party | 1116
|
|
1619
|
+
|
|
1620
|
+
Kingston and Surbiton | Conservative Party | 23686
|
|
1621
|
+
Kingston and Surbiton | Labour Party | 9203
|
|
1622
|
+
Kingston and Surbiton | Liberal Democrats | 27810
|
|
1623
|
+
Kingston and Surbiton | UK Independence Party | 675
|
|
1624
|
+
Kingston and Surbiton | Green Party | 536
|
|
1625
|
+
Kingston and Surbiton | All other candidates | 268
|
|
1626
|
+
|
|
1627
|
+
Kingswood | Conservative Party | 26754
|
|
1628
|
+
Kingswood | Labour Party | 19254
|
|
1629
|
+
Kingswood | Liberal Democrats | 1749
|
|
1630
|
+
Kingswood | Green Party | 984
|
|
1631
|
+
|
|
1632
|
+
Knowsley | Conservative Party | 5137
|
|
1633
|
+
Knowsley | Labour Party | 47351
|
|
1634
|
+
Knowsley | Liberal Democrats | 1189
|
|
1635
|
+
Knowsley | UK Independence Party | 1285
|
|
1636
|
+
Knowsley | Green Party | 521
|
|
1637
|
+
|
|
1638
|
+
Lancashire West | Conservative Party | 20341
|
|
1639
|
+
Lancashire West | Labour Party | 32030
|
|
1640
|
+
Lancashire West | Liberal Democrats | 1069
|
|
1641
|
+
Lancashire West | Green Party | 680
|
|
1642
|
+
Lancashire West | All other candidates | 269
|
|
1643
|
+
|
|
1644
|
+
Lancaster and Fleetwood | Conservative Party | 18681
|
|
1645
|
+
Lancaster and Fleetwood | Labour Party | 25342
|
|
1646
|
+
Lancaster and Fleetwood | Liberal Democrats | 1170
|
|
1647
|
+
Lancaster and Fleetwood | Green Party | 796
|
|
1648
|
+
|
|
1649
|
+
Leeds Central | Conservative Party | 9755
|
|
1650
|
+
Leeds Central | Labour Party | 33453
|
|
1651
|
+
Leeds Central | Liberal Democrats | 1063
|
|
1652
|
+
Leeds Central | UK Independence Party | 2056
|
|
1653
|
+
Leeds Central | Green Party | 1189
|
|
1654
|
+
Leeds Central | All other candidates | 157
|
|
1655
|
+
|
|
1656
|
+
Leeds East | Conservative Party | 12676
|
|
1657
|
+
Leeds East | Labour Party | 25428
|
|
1658
|
+
Leeds East | Liberal Democrats | 739
|
|
1659
|
+
Leeds East | UK Independence Party | 1742
|
|
1660
|
+
Leeds East | Green Party | 434
|
|
1661
|
+
Leeds East | All other candidates | 422
|
|
1662
|
+
|
|
1663
|
+
Leeds North East | Conservative Party | 16445
|
|
1664
|
+
Leeds North East | Labour Party | 33436
|
|
1665
|
+
Leeds North East | Liberal Democrats | 1952
|
|
1666
|
+
Leeds North East | Green Party | 680
|
|
1667
|
+
Leeds North East | All other candidates | 486
|
|
1668
|
+
|
|
1669
|
+
Leeds North West | Conservative Party | 9097
|
|
1670
|
+
Leeds North West | Labour Party | 20416
|
|
1671
|
+
Leeds North West | Liberal Democrats | 16192
|
|
1672
|
+
Leeds North West | Green Party | 582
|
|
1673
|
+
|
|
1674
|
+
Leeds West | Conservative Party | 11048
|
|
1675
|
+
Leeds West | Labour Party | 27013
|
|
1676
|
+
Leeds West | Liberal Democrats | 905
|
|
1677
|
+
Leeds West | UK Independence Party | 1815
|
|
1678
|
+
Leeds West | Green Party | 1023
|
|
1679
|
+
Leeds West | All other candidates | 425
|
|
1680
|
+
|
|
1681
|
+
Leicester East | Conservative Party | 12688
|
|
1682
|
+
Leicester East | Labour Party | 35116
|
|
1683
|
+
Leicester East | Liberal Democrats | 1343
|
|
1684
|
+
Leicester East | Green Party | 1070
|
|
1685
|
+
Leicester East | Small or local party, or independent candidate | 1753
|
|
1686
|
+
Leicester East | All other candidates | 454
|
|
1687
|
+
|
|
1688
|
+
Leicester South | Conservative Party | 10896
|
|
1689
|
+
Leicester South | Labour Party | 37157
|
|
1690
|
+
Leicester South | Liberal Democrats | 1287
|
|
1691
|
+
Leicester South | Green Party | 1177
|
|
1692
|
+
|
|
1693
|
+
Leicester West | Conservative Party | 11763
|
|
1694
|
+
Leicester West | Labour Party | 22823
|
|
1695
|
+
Leicester West | Liberal Democrats | 792
|
|
1696
|
+
Leicester West | UK Independence Party | 1406
|
|
1697
|
+
Leicester West | Green Party | 607
|
|
1698
|
+
Leicester West | All other candidates | 121
|
|
1699
|
+
|
|
1700
|
+
Leicestershire North West | Conservative Party | 31153
|
|
1701
|
+
Leicestershire North West | Labour Party | 17867
|
|
1702
|
+
Leicestershire North West | Liberal Democrats | 3420
|
|
1703
|
+
Leicestershire North West | Green Party | 1101
|
|
1704
|
+
|
|
1705
|
+
Leicestershire South | Conservative Party | 34795
|
|
1706
|
+
Leicestershire South | Labour Party | 16164
|
|
1707
|
+
Leicestershire South | Liberal Democrats | 2403
|
|
1708
|
+
Leicestershire South | UK Independence Party | 2235
|
|
1709
|
+
Leicestershire South | Green Party | 1092
|
|
1710
|
+
|
|
1711
|
+
Leigh | Conservative Party | 16793
|
|
1712
|
+
Leigh | Labour Party | 26347
|
|
1713
|
+
Leigh | Liberal Democrats | 951
|
|
1714
|
+
Leigh | UK Independence Party | 2783
|
|
1715
|
+
|
|
1716
|
+
Lewes | Conservative Party | 26820
|
|
1717
|
+
Lewes | Labour Party | 6060
|
|
1718
|
+
Lewes | Liberal Democrats | 21312
|
|
1719
|
+
|
|
1720
|
+
Lewisham Deptford | Conservative Party | 7562
|
|
1721
|
+
Lewisham Deptford | Labour Party | 42461
|
|
1722
|
+
Lewisham Deptford | Liberal Democrats | 2911
|
|
1723
|
+
Lewisham Deptford | Green Party | 1640
|
|
1724
|
+
Lewisham Deptford | All other candidates | 538
|
|
1725
|
+
|
|
1726
|
+
Lewisham East | Conservative Party | 10859
|
|
1727
|
+
Lewisham East | Labour Party | 32072
|
|
1728
|
+
Lewisham East | Liberal Democrats | 2086
|
|
1729
|
+
Lewisham East | UK Independence Party | 798
|
|
1730
|
+
Lewisham East | Green Party | 803
|
|
1731
|
+
Lewisham East | All other candidates | 583
|
|
1732
|
+
|
|
1733
|
+
Lewisham West and Penge | Conservative Party | 12249
|
|
1734
|
+
Lewisham West and Penge | Labour Party | 35411
|
|
1735
|
+
Lewisham West and Penge | Liberal Democrats | 3317
|
|
1736
|
+
Lewisham West and Penge | UK Independence Party | 700
|
|
1737
|
+
Lewisham West and Penge | Green Party | 1144
|
|
1738
|
+
Lewisham West and Penge | All other candidates | 375
|
|
1739
|
+
|
|
1740
|
+
Leyton and Wanstead | Conservative Party | 9627
|
|
1741
|
+
Leyton and Wanstead | Labour Party | 32234
|
|
1742
|
+
Leyton and Wanstead | Liberal Democrats | 2961
|
|
1743
|
+
Leyton and Wanstead | Green Party | 1351
|
|
1744
|
+
|
|
1745
|
+
Lichfield | Conservative Party | 34018
|
|
1746
|
+
Lichfield | Labour Party | 15437
|
|
1747
|
+
Lichfield | Liberal Democrats | 2653
|
|
1748
|
+
Lichfield | Green Party | 1416
|
|
1749
|
+
|
|
1750
|
+
Lincoln | Conservative Party | 21795
|
|
1751
|
+
Lincoln | Labour Party | 23333
|
|
1752
|
+
Lincoln | Liberal Democrats | 1284
|
|
1753
|
+
Lincoln | UK Independence Party | 1287
|
|
1754
|
+
Lincoln | Green Party | 583
|
|
1755
|
+
Lincoln | All other candidates | 436
|
|
1756
|
+
|
|
1757
|
+
Liverpool Riverside | Conservative Party | 4652
|
|
1758
|
+
Liverpool Riverside | Labour Party | 40599
|
|
1759
|
+
Liverpool Riverside | Liberal Democrats | 1187
|
|
1760
|
+
Liverpool Riverside | Green Party | 1582
|
|
1761
|
+
|
|
1762
|
+
Liverpool Walton | Conservative Party | 3624
|
|
1763
|
+
Liverpool Walton | Labour Party | 36175
|
|
1764
|
+
Liverpool Walton | Liberal Democrats | 638
|
|
1765
|
+
Liverpool Walton | Green Party | 523
|
|
1766
|
+
Liverpool Walton | Small or local party, or independent candidate | 1237
|
|
1767
|
+
|
|
1768
|
+
Liverpool Wavertree | Conservative Party | 5251
|
|
1769
|
+
Liverpool Wavertree | Labour Party | 34717
|
|
1770
|
+
Liverpool Wavertree | Liberal Democrats | 2858
|
|
1771
|
+
Liverpool Wavertree | Green Party | 598
|
|
1772
|
+
Liverpool Wavertree | All other candidates | 216
|
|
1773
|
+
|
|
1774
|
+
Liverpool West Derby | Conservative Party | 4463
|
|
1775
|
+
Liverpool West Derby | Labour Party | 37371
|
|
1776
|
+
Liverpool West Derby | Liberal Democrats | 545
|
|
1777
|
+
Liverpool West Derby | Green Party | 329
|
|
1778
|
+
Liverpool West Derby | Small or local party, or independent candidate | 2150
|
|
1779
|
+
Liverpool West Derby | All other candidates | 305
|
|
1780
|
+
|
|
1781
|
+
Loughborough | Conservative Party | 27022
|
|
1782
|
+
Loughborough | Labour Party | 22753
|
|
1783
|
+
Loughborough | Liberal Democrats | 1937
|
|
1784
|
+
Loughborough | UK Independence Party | 1465
|
|
1785
|
+
Loughborough | Green Party | 971
|
|
1786
|
+
|
|
1787
|
+
Louth and Horncastle | Conservative Party | 33733
|
|
1788
|
+
Louth and Horncastle | Labour Party | 14092
|
|
1789
|
+
Louth and Horncastle | Liberal Democrats | 1990
|
|
1790
|
+
Louth and Horncastle | UK Independence Party | 2460
|
|
1791
|
+
Louth and Horncastle | All other candidates | 496
|
|
1792
|
+
|
|
1793
|
+
Ludlow | Conservative Party | 31433
|
|
1794
|
+
Ludlow | Labour Party | 12147
|
|
1795
|
+
Ludlow | Liberal Democrats | 5336
|
|
1796
|
+
Ludlow | Green Party | 1054
|
|
1797
|
+
|
|
1798
|
+
Luton North | Conservative Party | 15401
|
|
1799
|
+
Luton North | Labour Party | 29765
|
|
1800
|
+
Luton North | Liberal Democrats | 808
|
|
1801
|
+
Luton North | Green Party | 648
|
|
1802
|
+
|
|
1803
|
+
Luton South | Conservative Party | 14879
|
|
1804
|
+
Luton South | Labour Party | 28804
|
|
1805
|
+
Luton South | Liberal Democrats | 1056
|
|
1806
|
+
Luton South | UK Independence Party | 795
|
|
1807
|
+
Luton South | Green Party | 439
|
|
1808
|
+
Luton South | All other candidates | 160
|
|
1809
|
+
|
|
1810
|
+
Macclesfield | Conservative Party | 28595
|
|
1811
|
+
Macclesfield | Labour Party | 19987
|
|
1812
|
+
Macclesfield | Liberal Democrats | 3350
|
|
1813
|
+
Macclesfield | Green Party | 1213
|
|
1814
|
+
Macclesfield | All other candidates | 1162
|
|
1815
|
+
|
|
1816
|
+
Maidenhead | Conservative Party | 37718
|
|
1817
|
+
Maidenhead | Labour Party | 11261
|
|
1818
|
+
Maidenhead | Liberal Democrats | 6540
|
|
1819
|
+
Maidenhead | UK Independence Party | 871
|
|
1820
|
+
Maidenhead | Green Party | 907
|
|
1821
|
+
Maidenhead | Small or local party, or independent candidate | 282
|
|
1822
|
+
Maidenhead | All other candidates | 660
|
|
1823
|
+
|
|
1824
|
+
Maidstone and The Weald | Conservative Party | 29136
|
|
1825
|
+
Maidstone and The Weald | Labour Party | 11432
|
|
1826
|
+
Maidstone and The Weald | Liberal Democrats | 8455
|
|
1827
|
+
Maidstone and The Weald | UK Independence Party | 1613
|
|
1828
|
+
Maidstone and The Weald | Green Party | 888
|
|
1829
|
+
Maidstone and The Weald | All other candidates | 172
|
|
1830
|
+
|
|
1831
|
+
Makerfield | Conservative Party | 14703
|
|
1832
|
+
Makerfield | Labour Party | 28245
|
|
1833
|
+
Makerfield | Liberal Democrats | 1322
|
|
1834
|
+
Makerfield | Small or local party, or independent candidate | 2663
|
|
1835
|
+
|
|
1836
|
+
Maldon | Conservative Party | 34111
|
|
1837
|
+
Maldon | Labour Party | 10681
|
|
1838
|
+
Maldon | Liberal Democrats | 2181
|
|
1839
|
+
Maldon | UK Independence Party | 1899
|
|
1840
|
+
Maldon | Green Party | 1073
|
|
1841
|
+
Maldon | All other candidates | 257
|
|
1842
|
+
|
|
1843
|
+
Manchester Central | Conservative Party | 7045
|
|
1844
|
+
Manchester Central | Labour Party | 38490
|
|
1845
|
+
Manchester Central | Liberal Democrats | 1678
|
|
1846
|
+
Manchester Central | UK Independence Party | 1469
|
|
1847
|
+
Manchester Central | Green Party | 846
|
|
1848
|
+
Manchester Central | All other candidates | 192
|
|
1849
|
+
|
|
1850
|
+
Manchester Gorton | Conservative Party | 3355
|
|
1851
|
+
Manchester Gorton | Labour Party | 35085
|
|
1852
|
+
Manchester Gorton | Liberal Democrats | 2597
|
|
1853
|
+
Manchester Gorton | UK Independence Party | 952
|
|
1854
|
+
Manchester Gorton | Green Party | 1038
|
|
1855
|
+
Manchester Gorton | Small or local party, or independent candidate | 2615
|
|
1856
|
+
Manchester Gorton | All other candidates | 311
|
|
1857
|
+
|
|
1858
|
+
Manchester Withington | Conservative Party | 5530
|
|
1859
|
+
Manchester Withington | Labour Party | 38424
|
|
1860
|
+
Manchester Withington | Liberal Democrats | 8549
|
|
1861
|
+
Manchester Withington | Green Party | 865
|
|
1862
|
+
Manchester Withington | All other candidates | 234
|
|
1863
|
+
|
|
1864
|
+
Mansfield | Conservative Party | 23392
|
|
1865
|
+
Mansfield | Labour Party | 22335
|
|
1866
|
+
Mansfield | Liberal Democrats | 697
|
|
1867
|
+
Mansfield | UK Independence Party | 2654
|
|
1868
|
+
Mansfield | Small or local party, or independent candidate | 1079
|
|
1869
|
+
|
|
1870
|
+
Meon Valley | Conservative Party | 35624
|
|
1871
|
+
Meon Valley | Labour Party | 9932
|
|
1872
|
+
Meon Valley | Liberal Democrats | 5900
|
|
1873
|
+
Meon Valley | UK Independence Party | 1435
|
|
1874
|
+
Meon Valley | Green Party | 1301
|
|
1875
|
+
|
|
1876
|
+
Meriden | Conservative Party | 33873
|
|
1877
|
+
Meriden | Labour Party | 14675
|
|
1878
|
+
Meriden | Liberal Democrats | 2663
|
|
1879
|
+
Meriden | UK Independence Party | 2016
|
|
1880
|
+
Meriden | Green Party | 1416
|
|
1881
|
+
|
|
1882
|
+
Middlesbrough | Conservative Party | 9531
|
|
1883
|
+
Middlesbrough | Labour Party | 23404
|
|
1884
|
+
Middlesbrough | Liberal Democrats | 368
|
|
1885
|
+
Middlesbrough | UK Independence Party | 1452
|
|
1886
|
+
Middlesbrough | Green Party | 250
|
|
1887
|
+
Middlesbrough | Small or local party, or independent candidate | 632
|
|
1888
|
+
|
|
1889
|
+
Middlesbrough South and Cleveland East | Conservative Party | 23643
|
|
1890
|
+
Middlesbrough South and Cleveland East | Labour Party | 22623
|
|
1891
|
+
Middlesbrough South and Cleveland East | Liberal Democrats | 1354
|
|
1892
|
+
|
|
1893
|
+
Milton Keynes North | Conservative Party | 30307
|
|
1894
|
+
Milton Keynes North | Labour Party | 28392
|
|
1895
|
+
Milton Keynes North | Liberal Democrats | 2499
|
|
1896
|
+
Milton Keynes North | UK Independence Party | 1390
|
|
1897
|
+
Milton Keynes North | Green Party | 1107
|
|
1898
|
+
Milton Keynes North | All other candidates | 169
|
|
1899
|
+
|
|
1900
|
+
Milton Keynes South | Conservative Party | 30652
|
|
1901
|
+
Milton Keynes South | Labour Party | 28927
|
|
1902
|
+
Milton Keynes South | Liberal Democrats | 1895
|
|
1903
|
+
Milton Keynes South | UK Independence Party | 1833
|
|
1904
|
+
Milton Keynes South | Green Party | 1179
|
|
1905
|
+
|
|
1906
|
+
Mitcham and Morden | Conservative Party | 11664
|
|
1907
|
+
Mitcham and Morden | Labour Party | 33039
|
|
1908
|
+
Mitcham and Morden | Liberal Democrats | 1494
|
|
1909
|
+
Mitcham and Morden | UK Independence Party | 1054
|
|
1910
|
+
Mitcham and Morden | Green Party | 644
|
|
1911
|
+
Mitcham and Morden | All other candidates | 223
|
|
1912
|
+
|
|
1913
|
+
Mole Valley | Conservative Party | 35092
|
|
1914
|
+
Mole Valley | Labour Party | 7864
|
|
1915
|
+
Mole Valley | Liberal Democrats | 10955
|
|
1916
|
+
Mole Valley | UK Independence Party | 1352
|
|
1917
|
+
Mole Valley | Green Party | 1463
|
|
1918
|
+
|
|
1919
|
+
Morecambe and Lunesdale | Conservative Party | 21773
|
|
1920
|
+
Morecambe and Lunesdale | Labour Party | 20374
|
|
1921
|
+
Morecambe and Lunesdale | Liberal Democrats | 1699
|
|
1922
|
+
Morecambe and Lunesdale | UK Independence Party | 1333
|
|
1923
|
+
Morecambe and Lunesdale | Green Party | 478
|
|
1924
|
+
|
|
1925
|
+
Morley and Outwood | Conservative Party | 26550
|
|
1926
|
+
Morley and Outwood | Labour Party | 24446
|
|
1927
|
+
Morley and Outwood | Liberal Democrats | 1361
|
|
1928
|
+
|
|
1929
|
+
New Forest East | Conservative Party | 32162
|
|
1930
|
+
New Forest East | Labour Party | 10167
|
|
1931
|
+
New Forest East | Liberal Democrats | 7786
|
|
1932
|
+
New Forest East | Green Party | 1251
|
|
1933
|
+
|
|
1934
|
+
New Forest West | Conservative Party | 33170
|
|
1935
|
+
New Forest West | Labour Party | 9739
|
|
1936
|
+
New Forest West | Liberal Democrats | 4781
|
|
1937
|
+
New Forest West | Green Party | 1454
|
|
1938
|
+
New Forest West | All other candidates | 483
|
|
1939
|
+
|
|
1940
|
+
Newark | Conservative Party | 34493
|
|
1941
|
+
Newark | Labour Party | 16344
|
|
1942
|
+
Newark | Liberal Democrats | 2786
|
|
1943
|
+
Newark | UK Independence Party | 1419
|
|
1944
|
+
|
|
1945
|
+
Newbury | Conservative Party | 37399
|
|
1946
|
+
Newbury | Labour Party | 8596
|
|
1947
|
+
Newbury | Liberal Democrats | 13019
|
|
1948
|
+
Newbury | Green Party | 1531
|
|
1949
|
+
Newbury | All other candidates | 304
|
|
1950
|
+
|
|
1951
|
+
Newcastle upon Tyne Central | Conservative Party | 9134
|
|
1952
|
+
Newcastle upon Tyne Central | Labour Party | 24071
|
|
1953
|
+
Newcastle upon Tyne Central | Liberal Democrats | 1812
|
|
1954
|
+
Newcastle upon Tyne Central | UK Independence Party | 1482
|
|
1955
|
+
Newcastle upon Tyne Central | Green Party | 595
|
|
1956
|
+
|
|
1957
|
+
Newcastle upon Tyne East | Conservative Party | 8866
|
|
1958
|
+
Newcastle upon Tyne East | Labour Party | 28127
|
|
1959
|
+
Newcastle upon Tyne East | Liberal Democrats | 2574
|
|
1960
|
+
Newcastle upon Tyne East | UK Independence Party | 1315
|
|
1961
|
+
Newcastle upon Tyne East | Green Party | 755
|
|
1962
|
+
|
|
1963
|
+
Newcastle upon Tyne North | Conservative Party | 16380
|
|
1964
|
+
Newcastle upon Tyne North | Labour Party | 26729
|
|
1965
|
+
Newcastle upon Tyne North | Liberal Democrats | 2533
|
|
1966
|
+
Newcastle upon Tyne North | UK Independence Party | 1780
|
|
1967
|
+
Newcastle upon Tyne North | Green Party | 513
|
|
1968
|
+
Newcastle upon Tyne North | All other candidates | 353
|
|
1969
|
+
|
|
1970
|
+
Newcastle-under-Lyme | Conservative Party | 21094
|
|
1971
|
+
Newcastle-under-Lyme | Labour Party | 21124
|
|
1972
|
+
Newcastle-under-Lyme | Liberal Democrats | 1624
|
|
1973
|
+
|
|
1974
|
+
Newton Abbot | Conservative Party | 28635
|
|
1975
|
+
Newton Abbot | Labour Party | 11475
|
|
1976
|
+
Newton Abbot | Liberal Democrats | 10601
|
|
1977
|
+
Newton Abbot | Green Party | 926
|
|
1978
|
+
|
|
1979
|
+
Norfolk Mid | Conservative Party | 32828
|
|
1980
|
+
Norfolk Mid | Labour Party | 16742
|
|
1981
|
+
Norfolk Mid | Liberal Democrats | 2848
|
|
1982
|
+
Norfolk Mid | UK Independence Party | 2092
|
|
1983
|
+
Norfolk Mid | Green Party | 1158
|
|
1984
|
+
|
|
1985
|
+
Norfolk North | Conservative Party | 21748
|
|
1986
|
+
Norfolk North | Labour Party | 5180
|
|
1987
|
+
Norfolk North | Liberal Democrats | 25260
|
|
1988
|
+
|
|
1989
|
+
Norfolk North West | Conservative Party | 29408
|
|
1990
|
+
Norfolk North West | Labour Party | 15620
|
|
1991
|
+
Norfolk North West | Liberal Democrats | 1393
|
|
1992
|
+
Norfolk North West | UK Independence Party | 1539
|
|
1993
|
+
Norfolk North West | Green Party | 851
|
|
1994
|
+
|
|
1995
|
+
Norfolk South | Conservative Party | 35580
|
|
1996
|
+
Norfolk South | Labour Party | 18902
|
|
1997
|
+
Norfolk South | Liberal Democrats | 5074
|
|
1998
|
+
Norfolk South | Green Party | 1555
|
|
1999
|
+
|
|
2000
|
+
Norfolk South West | Conservative Party | 32894
|
|
2001
|
+
Norfolk South West | Labour Party | 14582
|
|
2002
|
+
Norfolk South West | Liberal Democrats | 2365
|
|
2003
|
+
Norfolk South West | UK Independence Party | 2575
|
|
2004
|
+
|
|
2005
|
+
Normanton, Pontefract and Castleford | Conservative Party | 14769
|
|
2006
|
+
Normanton, Pontefract and Castleford | Labour Party | 29268
|
|
2007
|
+
Normanton, Pontefract and Castleford | Liberal Democrats | 693
|
|
2008
|
+
Normanton, Pontefract and Castleford | UK Independence Party | 3030
|
|
2009
|
+
Normanton, Pontefract and Castleford | Small or local party, or independent candidate | 1431
|
|
2010
|
+
|
|
2011
|
+
Northampton North | Conservative Party | 19065
|
|
2012
|
+
Northampton North | Labour Party | 18258
|
|
2013
|
+
Northampton North | Liberal Democrats | 1015
|
|
2014
|
+
Northampton North | UK Independence Party | 1404
|
|
2015
|
+
Northampton North | Green Party | 636
|
|
2016
|
+
|
|
2017
|
+
Northampton South | Conservative Party | 19231
|
|
2018
|
+
Northampton South | Labour Party | 18072
|
|
2019
|
+
Northampton South | Liberal Democrats | 1405
|
|
2020
|
+
Northampton South | UK Independence Party | 1630
|
|
2021
|
+
Northampton South | Green Party | 696
|
|
2022
|
+
|
|
2023
|
+
Northamptonshire South | Conservative Party | 40599
|
|
2024
|
+
Northamptonshire South | Labour Party | 17759
|
|
2025
|
+
Northamptonshire South | Liberal Democrats | 3623
|
|
2026
|
+
Northamptonshire South | UK Independence Party | 1363
|
|
2027
|
+
Northamptonshire South | Green Party | 1357
|
|
2028
|
+
Northamptonshire South | All other candidates | 297
|
|
2029
|
+
|
|
2030
|
+
Norwich North | Conservative Party | 21900
|
|
2031
|
+
Norwich North | Labour Party | 21393
|
|
2032
|
+
Norwich North | Liberal Democrats | 1480
|
|
2033
|
+
Norwich North | Green Party | 782
|
|
2034
|
+
Norwich North | All other candidates | 340
|
|
2035
|
+
|
|
2036
|
+
Norwich South | Conservative Party | 15715
|
|
2037
|
+
Norwich South | Labour Party | 31311
|
|
2038
|
+
Norwich South | Liberal Democrats | 2841
|
|
2039
|
+
Norwich South | Green Party | 1492
|
|
2040
|
+
|
|
2041
|
+
Nottingham East | Conservative Party | 8512
|
|
2042
|
+
Nottingham East | Labour Party | 28102
|
|
2043
|
+
Nottingham East | Liberal Democrats | 1003
|
|
2044
|
+
Nottingham East | UK Independence Party | 817
|
|
2045
|
+
Nottingham East | Green Party | 698
|
|
2046
|
+
Nottingham East | All other candidates | 195
|
|
2047
|
+
|
|
2048
|
+
Nottingham North | Conservative Party | 11907
|
|
2049
|
+
Nottingham North | Labour Party | 23067
|
|
2050
|
+
Nottingham North | Liberal Democrats | 674
|
|
2051
|
+
Nottingham North | UK Independence Party | 2133
|
|
2052
|
+
Nottingham North | Green Party | 538
|
|
2053
|
+
|
|
2054
|
+
Nottingham South | Conservative Party | 14851
|
|
2055
|
+
Nottingham South | Labour Party | 30013
|
|
2056
|
+
Nottingham South | Liberal Democrats | 1564
|
|
2057
|
+
Nottingham South | UK Independence Party | 1103
|
|
2058
|
+
Nottingham South | Green Party | 598
|
|
2059
|
+
|
|
2060
|
+
Nuneaton | Conservative Party | 23755
|
|
2061
|
+
Nuneaton | Labour Party | 19016
|
|
2062
|
+
Nuneaton | Liberal Democrats | 914
|
|
2063
|
+
Nuneaton | UK Independence Party | 1619
|
|
2064
|
+
Nuneaton | Green Party | 763
|
|
2065
|
+
|
|
2066
|
+
Old Bexley and Sidcup | Conservative Party | 29545
|
|
2067
|
+
Old Bexley and Sidcup | Labour Party | 14079
|
|
2068
|
+
Old Bexley and Sidcup | Liberal Democrats | 1572
|
|
2069
|
+
Old Bexley and Sidcup | UK Independence Party | 1619
|
|
2070
|
+
Old Bexley and Sidcup | Green Party | 820
|
|
2071
|
+
Old Bexley and Sidcup | All other candidates | 407
|
|
2072
|
+
|
|
2073
|
+
Oldham East and Saddleworth | Conservative Party | 17447
|
|
2074
|
+
Oldham East and Saddleworth | Labour Party | 25629
|
|
2075
|
+
Oldham East and Saddleworth | Liberal Democrats | 1683
|
|
2076
|
+
Oldham East and Saddleworth | UK Independence Party | 2278
|
|
2077
|
+
|
|
2078
|
+
Oldham West and Royton | Conservative Party | 12648
|
|
2079
|
+
Oldham West and Royton | Labour Party | 29846
|
|
2080
|
+
Oldham West and Royton | Liberal Democrats | 956
|
|
2081
|
+
Oldham West and Royton | UK Independence Party | 1899
|
|
2082
|
+
Oldham West and Royton | Green Party | 439
|
|
2083
|
+
|
|
2084
|
+
Orpington | Conservative Party | 31762
|
|
2085
|
+
Orpington | Labour Party | 12301
|
|
2086
|
+
Orpington | Liberal Democrats | 3315
|
|
2087
|
+
Orpington | UK Independence Party | 2023
|
|
2088
|
+
Orpington | Green Party | 1060
|
|
2089
|
+
|
|
2090
|
+
Oxford East | Conservative Party | 11834
|
|
2091
|
+
Oxford East | Labour Party | 35118
|
|
2092
|
+
Oxford East | Liberal Democrats | 4904
|
|
2093
|
+
Oxford East | Green Party | 1785
|
|
2094
|
+
Oxford East | All other candidates | 255
|
|
2095
|
+
|
|
2096
|
+
Oxford West and Abingdon | Conservative Party | 25440
|
|
2097
|
+
Oxford West and Abingdon | Labour Party | 7573
|
|
2098
|
+
Oxford West and Abingdon | Liberal Democrats | 26256
|
|
2099
|
+
Oxford West and Abingdon | UK Independence Party | 751
|
|
2100
|
+
|
|
2101
|
+
Pendle | Conservative Party | 21986
|
|
2102
|
+
Pendle | Labour Party | 20707
|
|
2103
|
+
Pendle | Liberal Democrats | 941
|
|
2104
|
+
Pendle | Green Party | 502
|
|
2105
|
+
Pendle | Small or local party, or independent candidate | 718
|
|
2106
|
+
|
|
2107
|
+
Penistone and Stocksbridge | Conservative Party | 21485
|
|
2108
|
+
Penistone and Stocksbridge | Labour Party | 22807
|
|
2109
|
+
Penistone and Stocksbridge | Liberal Democrats | 2042
|
|
2110
|
+
Penistone and Stocksbridge | UK Independence Party | 3453
|
|
2111
|
+
|
|
2112
|
+
Penrith and The Border | Conservative Party | 28078
|
|
2113
|
+
Penrith and The Border | Labour Party | 12168
|
|
2114
|
+
Penrith and The Border | Liberal Democrats | 3641
|
|
2115
|
+
Penrith and The Border | UK Independence Party | 1142
|
|
2116
|
+
Penrith and The Border | Green Party | 1029
|
|
2117
|
+
Penrith and The Border | All other candidates | 412
|
|
2118
|
+
|
|
2119
|
+
Peterborough | Conservative Party | 22343
|
|
2120
|
+
Peterborough | Labour Party | 22950
|
|
2121
|
+
Peterborough | Liberal Democrats | 1597
|
|
2122
|
+
Peterborough | Green Party | 848
|
|
2123
|
+
|
|
2124
|
+
Plymouth Moor View | Conservative Party | 23567
|
|
2125
|
+
Plymouth Moor View | Labour Party | 18548
|
|
2126
|
+
Plymouth Moor View | Liberal Democrats | 917
|
|
2127
|
+
Plymouth Moor View | UK Independence Party | 1849
|
|
2128
|
+
Plymouth Moor View | Green Party | 536
|
|
2129
|
+
|
|
2130
|
+
Plymouth Sutton and Devonport | Conservative Party | 20476
|
|
2131
|
+
Plymouth Sutton and Devonport | Labour Party | 27283
|
|
2132
|
+
Plymouth Sutton and Devonport | Liberal Democrats | 1244
|
|
2133
|
+
Plymouth Sutton and Devonport | UK Independence Party | 1364
|
|
2134
|
+
Plymouth Sutton and Devonport | Green Party | 604
|
|
2135
|
+
Plymouth Sutton and Devonport | All other candidates | 237
|
|
2136
|
+
|
|
2137
|
+
Poole | Conservative Party | 28888
|
|
2138
|
+
Poole | Labour Party | 14679
|
|
2139
|
+
Poole | Liberal Democrats | 4433
|
|
2140
|
+
Poole | Green Party | 1299
|
|
2141
|
+
Poole | All other candidates | 551
|
|
2142
|
+
|
|
2143
|
+
Poplar and Limehouse | Conservative Party | 11846
|
|
2144
|
+
Poplar and Limehouse | Labour Party | 39558
|
|
2145
|
+
Poplar and Limehouse | Liberal Democrats | 3959
|
|
2146
|
+
Poplar and Limehouse | UK Independence Party | 849
|
|
2147
|
+
Poplar and Limehouse | Green Party | 989
|
|
2148
|
+
Poplar and Limehouse | Small or local party, or independent candidate | 1477
|
|
2149
|
+
Poplar and Limehouse | All other candidates | 136
|
|
2150
|
+
|
|
2151
|
+
Portsmouth North | Conservative Party | 25860
|
|
2152
|
+
Portsmouth North | Labour Party | 15895
|
|
2153
|
+
Portsmouth North | Liberal Democrats | 2608
|
|
2154
|
+
Portsmouth North | UK Independence Party | 1926
|
|
2155
|
+
Portsmouth North | Green Party | 791
|
|
2156
|
+
Portsmouth North | All other candidates | 130
|
|
2157
|
+
|
|
2158
|
+
Portsmouth South | Conservative Party | 16736
|
|
2159
|
+
Portsmouth South | Labour Party | 18290
|
|
2160
|
+
Portsmouth South | Liberal Democrats | 7699
|
|
2161
|
+
Portsmouth South | UK Independence Party | 1129
|
|
2162
|
+
Portsmouth South | Green Party | 712
|
|
2163
|
+
|
|
2164
|
+
Preston | Conservative Party | 8487
|
|
2165
|
+
Preston | Labour Party | 24210
|
|
2166
|
+
Preston | Liberal Democrats | 1204
|
|
2167
|
+
Preston | UK Independence Party | 1348
|
|
2168
|
+
Preston | Green Party | 348
|
|
2169
|
+
|
|
2170
|
+
Pudsey | Conservative Party | 25550
|
|
2171
|
+
Pudsey | Labour Party | 25219
|
|
2172
|
+
Pudsey | Liberal Democrats | 1761
|
|
2173
|
+
Pudsey | Small or local party, or independent candidate | 1138
|
|
2174
|
+
Pudsey | All other candidates | 291
|
|
2175
|
+
|
|
2176
|
+
Putney | Conservative Party | 20679
|
|
2177
|
+
Putney | Labour Party | 19125
|
|
2178
|
+
Putney | Liberal Democrats | 5448
|
|
2179
|
+
Putney | UK Independence Party | 477
|
|
2180
|
+
Putney | Green Party | 1107
|
|
2181
|
+
Putney | All other candidates | 58
|
|
2182
|
+
|
|
2183
|
+
Rayleigh and Wickford | Conservative Party | 36914
|
|
2184
|
+
Rayleigh and Wickford | Labour Party | 13464
|
|
2185
|
+
Rayleigh and Wickford | Liberal Democrats | 1557
|
|
2186
|
+
Rayleigh and Wickford | UK Independence Party | 2326
|
|
2187
|
+
Rayleigh and Wickford | Green Party | 1062
|
|
2188
|
+
|
|
2189
|
+
Reading East | Conservative Party | 23344
|
|
2190
|
+
Reading East | Labour Party | 27093
|
|
2191
|
+
Reading East | Liberal Democrats | 3378
|
|
2192
|
+
Reading East | Green Party | 1093
|
|
2193
|
+
Reading East | All other candidates | 330
|
|
2194
|
+
|
|
2195
|
+
Reading West | Conservative Party | 25311
|
|
2196
|
+
Reading West | Labour Party | 22435
|
|
2197
|
+
Reading West | Liberal Democrats | 3041
|
|
2198
|
+
Reading West | Green Party | 979
|
|
2199
|
+
|
|
2200
|
+
Redcar | Conservative Party | 14138
|
|
2201
|
+
Redcar | Labour Party | 23623
|
|
2202
|
+
Redcar | Liberal Democrats | 2849
|
|
2203
|
+
Redcar | UK Independence Party | 1950
|
|
2204
|
+
|
|
2205
|
+
Redditch | Conservative Party | 23652
|
|
2206
|
+
Redditch | Labour Party | 16289
|
|
2207
|
+
Redditch | Liberal Democrats | 1173
|
|
2208
|
+
Redditch | UK Independence Party | 1371
|
|
2209
|
+
Redditch | Green Party | 380
|
|
2210
|
+
Redditch | Small or local party, or independent candidate | 2239
|
|
2211
|
+
Redditch | All other candidates | 99
|
|
2212
|
+
|
|
2213
|
+
Reigate | Conservative Party | 30896
|
|
2214
|
+
Reigate | Labour Party | 13282
|
|
2215
|
+
Reigate | Liberal Democrats | 5889
|
|
2216
|
+
Reigate | UK Independence Party | 1542
|
|
2217
|
+
Reigate | Green Party | 2214
|
|
2218
|
+
|
|
2219
|
+
Ribble South | Conservative Party | 28980
|
|
2220
|
+
Ribble South | Labour Party | 21559
|
|
2221
|
+
Ribble South | Liberal Democrats | 2073
|
|
2222
|
+
Ribble South | UK Independence Party | 1387
|
|
2223
|
+
Ribble South | Green Party | 494
|
|
2224
|
+
Ribble South | All other candidates | 341
|
|
2225
|
+
|
|
2226
|
+
Ribble Valley | Conservative Party | 31919
|
|
2227
|
+
Ribble Valley | Labour Party | 18720
|
|
2228
|
+
Ribble Valley | Liberal Democrats | 3247
|
|
2229
|
+
Ribble Valley | Green Party | 1314
|
|
2230
|
+
|
|
2231
|
+
Richmond | Conservative Party | 36458
|
|
2232
|
+
Richmond | Labour Party | 13350
|
|
2233
|
+
Richmond | Liberal Democrats | 3360
|
|
2234
|
+
Richmond | Green Party | 1739
|
|
2235
|
+
Richmond | Small or local party, or independent candidate | 2106
|
|
2236
|
+
|
|
2237
|
+
Richmond Park | Conservative Party | 28588
|
|
2238
|
+
Richmond Park | Labour Party | 5773
|
|
2239
|
+
Richmond Park | Liberal Democrats | 28543
|
|
2240
|
+
Richmond Park | UK Independence Party | 426
|
|
2241
|
+
|
|
2242
|
+
Rochdale | Conservative Party | 14216
|
|
2243
|
+
Rochdale | Labour Party | 29035
|
|
2244
|
+
Rochdale | Liberal Democrats | 4027
|
|
2245
|
+
Rochdale | UK Independence Party | 1641
|
|
2246
|
+
Rochdale | Small or local party, or independent candidate | 883
|
|
2247
|
+
Rochdale | All other candidates | 242
|
|
2248
|
+
|
|
2249
|
+
Rochester and Strood | Conservative Party | 29232
|
|
2250
|
+
Rochester and Strood | Labour Party | 19382
|
|
2251
|
+
Rochester and Strood | Liberal Democrats | 1189
|
|
2252
|
+
Rochester and Strood | UK Independence Party | 2893
|
|
2253
|
+
Rochester and Strood | Green Party | 781
|
|
2254
|
+
Rochester and Strood | All other candidates | 292
|
|
2255
|
+
|
|
2256
|
+
Rochford and Southend East | Conservative Party | 23013
|
|
2257
|
+
Rochford and Southend East | Labour Party | 17465
|
|
2258
|
+
Rochford and Southend East | Liberal Democrats | 1265
|
|
2259
|
+
Rochford and Southend East | UK Independence Party | 1777
|
|
2260
|
+
Rochford and Southend East | Green Party | 804
|
|
2261
|
+
Rochford and Southend East | Small or local party, or independent candidate | 2924
|
|
2262
|
+
|
|
2263
|
+
Romford | Conservative Party | 29671
|
|
2264
|
+
Romford | Labour Party | 15893
|
|
2265
|
+
Romford | Liberal Democrats | 1215
|
|
2266
|
+
Romford | UK Independence Party | 2350
|
|
2267
|
+
Romford | Green Party | 815
|
|
2268
|
+
|
|
2269
|
+
Romsey and Southampton North | Conservative Party | 28668
|
|
2270
|
+
Romsey and Southampton North | Labour Party | 9614
|
|
2271
|
+
Romsey and Southampton North | Liberal Democrats | 10662
|
|
2272
|
+
Romsey and Southampton North | Green Party | 953
|
|
2273
|
+
Romsey and Southampton North | All other candidates | 271
|
|
2274
|
+
|
|
2275
|
+
Rossendale and Darwen | Conservative Party | 25499
|
|
2276
|
+
Rossendale and Darwen | Labour Party | 22283
|
|
2277
|
+
Rossendale and Darwen | Liberal Democrats | 1550
|
|
2278
|
+
Rossendale and Darwen | Green Party | 824
|
|
2279
|
+
|
|
2280
|
+
Rother Valley | Conservative Party | 19939
|
|
2281
|
+
Rother Valley | Labour Party | 23821
|
|
2282
|
+
Rother Valley | Liberal Democrats | 1155
|
|
2283
|
+
Rother Valley | UK Independence Party | 3704
|
|
2284
|
+
Rother Valley | Green Party | 869
|
|
2285
|
+
|
|
2286
|
+
Rotherham | Conservative Party | 10017
|
|
2287
|
+
Rotherham | Labour Party | 21404
|
|
2288
|
+
Rotherham | Liberal Democrats | 1754
|
|
2289
|
+
Rotherham | UK Independence Party | 3316
|
|
2290
|
+
Rotherham | Small or local party, or independent candidate | 1432
|
|
2291
|
+
|
|
2292
|
+
Rugby | Conservative Party | 27872
|
|
2293
|
+
Rugby | Labour Party | 19660
|
|
2294
|
+
Rugby | Liberal Democrats | 2851
|
|
2295
|
+
Rugby | Green Party | 953
|
|
2296
|
+
|
|
2297
|
+
Ruislip, Northwood and Pinner | Conservative Party | 30555
|
|
2298
|
+
Ruislip, Northwood and Pinner | Labour Party | 16575
|
|
2299
|
+
Ruislip, Northwood and Pinner | Liberal Democrats | 3813
|
|
2300
|
+
Ruislip, Northwood and Pinner | UK Independence Party | 1171
|
|
2301
|
+
Ruislip, Northwood and Pinner | Green Party | 1268
|
|
2302
|
+
|
|
2303
|
+
Runnymede and Weybridge | Conservative Party | 31436
|
|
2304
|
+
Runnymede and Weybridge | Labour Party | 13386
|
|
2305
|
+
Runnymede and Weybridge | Liberal Democrats | 3765
|
|
2306
|
+
Runnymede and Weybridge | UK Independence Party | 1675
|
|
2307
|
+
Runnymede and Weybridge | Green Party | 1347
|
|
2308
|
+
|
|
2309
|
+
Rushcliffe | Conservative Party | 30223
|
|
2310
|
+
Rushcliffe | Labour Party | 22213
|
|
2311
|
+
Rushcliffe | Liberal Democrats | 2759
|
|
2312
|
+
Rushcliffe | UK Independence Party | 1490
|
|
2313
|
+
Rushcliffe | Green Party | 1626
|
|
2314
|
+
|
|
2315
|
+
Rutland and Melton | Conservative Party | 36169
|
|
2316
|
+
Rutland and Melton | Labour Party | 13065
|
|
2317
|
+
Rutland and Melton | Liberal Democrats | 4711
|
|
2318
|
+
Rutland and Melton | UK Independence Party | 1869
|
|
2319
|
+
Rutland and Melton | Green Party | 1755
|
|
2320
|
+
|
|
2321
|
+
Saffron Walden | Conservative Party | 37629
|
|
2322
|
+
Saffron Walden | Labour Party | 12663
|
|
2323
|
+
Saffron Walden | Liberal Democrats | 8528
|
|
2324
|
+
Saffron Walden | UK Independence Party | 2091
|
|
2325
|
+
|
|
2326
|
+
Salford and Eccles | Conservative Party | 12036
|
|
2327
|
+
Salford and Eccles | Labour Party | 31168
|
|
2328
|
+
Salford and Eccles | Liberal Democrats | 1286
|
|
2329
|
+
Salford and Eccles | UK Independence Party | 2320
|
|
2330
|
+
Salford and Eccles | Green Party | 809
|
|
2331
|
+
|
|
2332
|
+
Salisbury | Conservative Party | 30952
|
|
2333
|
+
Salisbury | Labour Party | 13619
|
|
2334
|
+
Salisbury | Liberal Democrats | 5982
|
|
2335
|
+
Salisbury | UK Independence Party | 1191
|
|
2336
|
+
Salisbury | Green Party | 1152
|
|
2337
|
+
Salisbury | All other candidates | 415
|
|
2338
|
+
|
|
2339
|
+
Scarborough and Whitby | Conservative Party | 24401
|
|
2340
|
+
Scarborough and Whitby | Labour Party | 20966
|
|
2341
|
+
Scarborough and Whitby | Liberal Democrats | 1354
|
|
2342
|
+
Scarborough and Whitby | UK Independence Party | 1682
|
|
2343
|
+
Scarborough and Whitby | Green Party | 915
|
|
2344
|
+
Scarborough and Whitby | Small or local party, or independent candidate | 680
|
|
2345
|
+
Scarborough and Whitby | All other candidates | 451
|
|
2346
|
+
|
|
2347
|
+
Scunthorpe | Conservative Party | 17485
|
|
2348
|
+
Scunthorpe | Labour Party | 20916
|
|
2349
|
+
Scunthorpe | Liberal Democrats | 554
|
|
2350
|
+
Scunthorpe | UK Independence Party | 1247
|
|
2351
|
+
|
|
2352
|
+
Sedgefield | Conservative Party | 16143
|
|
2353
|
+
Sedgefield | Labour Party | 22202
|
|
2354
|
+
Sedgefield | Liberal Democrats | 797
|
|
2355
|
+
Sedgefield | UK Independence Party | 1763
|
|
2356
|
+
Sedgefield | Green Party | 686
|
|
2357
|
+
|
|
2358
|
+
Sefton Central | Conservative Party | 17212
|
|
2359
|
+
Sefton Central | Labour Party | 32830
|
|
2360
|
+
Sefton Central | Liberal Democrats | 1381
|
|
2361
|
+
Sefton Central | Green Party | 656
|
|
2362
|
+
|
|
2363
|
+
Selby and Ainsty | Conservative Party | 32921
|
|
2364
|
+
Selby and Ainsty | Labour Party | 19149
|
|
2365
|
+
Selby and Ainsty | Liberal Democrats | 2293
|
|
2366
|
+
Selby and Ainsty | UK Independence Party | 1713
|
|
2367
|
+
|
|
2368
|
+
Sevenoaks | Conservative Party | 32644
|
|
2369
|
+
Sevenoaks | Labour Party | 10727
|
|
2370
|
+
Sevenoaks | Liberal Democrats | 4280
|
|
2371
|
+
Sevenoaks | UK Independence Party | 1894
|
|
2372
|
+
Sevenoaks | Green Party | 1673
|
|
2373
|
+
|
|
2374
|
+
Sheffield Brightside and Hillsborough | Conservative Party | 9050
|
|
2375
|
+
Sheffield Brightside and Hillsborough | Labour Party | 28193
|
|
2376
|
+
Sheffield Brightside and Hillsborough | Liberal Democrats | 1061
|
|
2377
|
+
Sheffield Brightside and Hillsborough | UK Independence Party | 2645
|
|
2378
|
+
Sheffield Brightside and Hillsborough | Green Party | 737
|
|
2379
|
+
Sheffield Brightside and Hillsborough | All other candidates | 184
|
|
2380
|
+
|
|
2381
|
+
Sheffield Central | Conservative Party | 6215
|
|
2382
|
+
Sheffield Central | Labour Party | 33963
|
|
2383
|
+
Sheffield Central | Liberal Democrats | 2465
|
|
2384
|
+
Sheffield Central | UK Independence Party | 1060
|
|
2385
|
+
Sheffield Central | Green Party | 3848
|
|
2386
|
+
Sheffield Central | All other candidates | 326
|
|
2387
|
+
|
|
2388
|
+
Sheffield Hallam | Conservative Party | 13561
|
|
2389
|
+
Sheffield Hallam | Labour Party | 21881
|
|
2390
|
+
Sheffield Hallam | Liberal Democrats | 19756
|
|
2391
|
+
Sheffield Hallam | UK Independence Party | 929
|
|
2392
|
+
Sheffield Hallam | Green Party | 823
|
|
2393
|
+
Sheffield Hallam | All other candidates | 70
|
|
2394
|
+
|
|
2395
|
+
Sheffield Heeley | Conservative Party | 12696
|
|
2396
|
+
Sheffield Heeley | Labour Party | 26524
|
|
2397
|
+
Sheffield Heeley | Liberal Democrats | 2022
|
|
2398
|
+
Sheffield Heeley | UK Independence Party | 1977
|
|
2399
|
+
Sheffield Heeley | Green Party | 943
|
|
2400
|
+
Sheffield Heeley | All other candidates | 64
|
|
2401
|
+
|
|
2402
|
+
Sheffield South East | Conservative Party | 13722
|
|
2403
|
+
Sheffield South East | Labour Party | 25520
|
|
2404
|
+
Sheffield South East | Liberal Democrats | 1432
|
|
2405
|
+
Sheffield South East | UK Independence Party | 2820
|
|
2406
|
+
Sheffield South East | All other candidates | 102
|
|
2407
|
+
|
|
2408
|
+
Sherwood | Conservative Party | 27492
|
|
2409
|
+
Sherwood | Labour Party | 22294
|
|
2410
|
+
Sherwood | Liberal Democrats | 1113
|
|
2411
|
+
Sherwood | UK Independence Party | 1801
|
|
2412
|
+
Sherwood | Green Party | 664
|
|
2413
|
+
|
|
2414
|
+
Shipley | Conservative Party | 27417
|
|
2415
|
+
Shipley | Labour Party | 22736
|
|
2416
|
+
Shipley | Liberal Democrats | 2202
|
|
2417
|
+
Shipley | Small or local party, or independent candidate | 1040
|
|
2418
|
+
|
|
2419
|
+
Shrewsbury and Atcham | Conservative Party | 29073
|
|
2420
|
+
Shrewsbury and Atcham | Labour Party | 22446
|
|
2421
|
+
Shrewsbury and Atcham | Liberal Democrats | 4254
|
|
2422
|
+
Shrewsbury and Atcham | UK Independence Party | 1363
|
|
2423
|
+
Shrewsbury and Atcham | Green Party | 1067
|
|
2424
|
+
|
|
2425
|
+
Shropshire North | Conservative Party | 33642
|
|
2426
|
+
Shropshire North | Labour Party | 17287
|
|
2427
|
+
Shropshire North | Liberal Democrats | 2948
|
|
2428
|
+
Shropshire North | Green Party | 1722
|
|
2429
|
+
|
|
2430
|
+
Sittingbourne and Sheppey | Conservative Party | 30911
|
|
2431
|
+
Sittingbourne and Sheppey | Labour Party | 15700
|
|
2432
|
+
Sittingbourne and Sheppey | Liberal Democrats | 1392
|
|
2433
|
+
Sittingbourne and Sheppey | Green Party | 558
|
|
2434
|
+
Sittingbourne and Sheppey | Small or local party, or independent candidate | 2133
|
|
2435
|
+
Sittingbourne and Sheppey | All other candidates | 695
|
|
2436
|
+
|
|
2437
|
+
Skipton and Ripon | Conservative Party | 36425
|
|
2438
|
+
Skipton and Ripon | Labour Party | 16440
|
|
2439
|
+
Skipton and Ripon | Green Party | 3734
|
|
2440
|
+
Skipton and Ripon | Small or local party, or independent candidate | 1539
|
|
2441
|
+
|
|
2442
|
+
Sleaford and North Hykeham | Conservative Party | 42245
|
|
2443
|
+
Sleaford and North Hykeham | Labour Party | 17008
|
|
2444
|
+
Sleaford and North Hykeham | Liberal Democrats | 2722
|
|
2445
|
+
Sleaford and North Hykeham | UK Independence Party | 1954
|
|
2446
|
+
Sleaford and North Hykeham | Green Party | 968
|
|
2447
|
+
Sleaford and North Hykeham | All other candidates | 900
|
|
2448
|
+
|
|
2449
|
+
Slough | Conservative Party | 17172
|
|
2450
|
+
Slough | Labour Party | 34170
|
|
2451
|
+
Slough | Liberal Democrats | 1308
|
|
2452
|
+
Slough | UK Independence Party | 1228
|
|
2453
|
+
Slough | All other candidates | 417
|
|
2454
|
+
|
|
2455
|
+
Solihull | Conservative Party | 32985
|
|
2456
|
+
Solihull | Labour Party | 12414
|
|
2457
|
+
Solihull | Liberal Democrats | 8901
|
|
2458
|
+
Solihull | UK Independence Party | 1291
|
|
2459
|
+
Solihull | Green Party | 1157
|
|
2460
|
+
|
|
2461
|
+
Somerset North | Conservative Party | 33605
|
|
2462
|
+
Somerset North | Labour Party | 16502
|
|
2463
|
+
Somerset North | Liberal Democrats | 5982
|
|
2464
|
+
Somerset North | Green Party | 1976
|
|
2465
|
+
Somerset North | Small or local party, or independent candidate | 3929
|
|
2466
|
+
|
|
2467
|
+
Somerset North East | Conservative Party | 28992
|
|
2468
|
+
Somerset North East | Labour Party | 18757
|
|
2469
|
+
Somerset North East | Liberal Democrats | 4461
|
|
2470
|
+
Somerset North East | Green Party | 1245
|
|
2471
|
+
Somerset North East | All other candidates | 588
|
|
2472
|
+
|
|
2473
|
+
Somerton and Frome | Conservative Party | 36231
|
|
2474
|
+
Somerton and Frome | Labour Party | 10998
|
|
2475
|
+
Somerton and Frome | Liberal Democrats | 13325
|
|
2476
|
+
Somerton and Frome | Green Party | 2047
|
|
2477
|
+
Somerton and Frome | All other candidates | 991
|
|
2478
|
+
|
|
2479
|
+
South Holland and The Deepings | Conservative Party | 35179
|
|
2480
|
+
South Holland and The Deepings | Labour Party | 10282
|
|
2481
|
+
South Holland and The Deepings | Liberal Democrats | 1433
|
|
2482
|
+
South Holland and The Deepings | UK Independence Party | 2185
|
|
2483
|
+
South Holland and The Deepings | Green Party | 894
|
|
2484
|
+
South Holland and The Deepings | All other candidates | 342
|
|
2485
|
+
|
|
2486
|
+
South Shields | Conservative Party | 10570
|
|
2487
|
+
South Shields | Labour Party | 25078
|
|
2488
|
+
South Shields | Liberal Democrats | 681
|
|
2489
|
+
South Shields | UK Independence Party | 3006
|
|
2490
|
+
South Shields | Green Party | 1437
|
|
2491
|
+
|
|
2492
|
+
Southampton Itchen | Conservative Party | 21773
|
|
2493
|
+
Southampton Itchen | Labour Party | 21742
|
|
2494
|
+
Southampton Itchen | Liberal Democrats | 1421
|
|
2495
|
+
Southampton Itchen | UK Independence Party | 1122
|
|
2496
|
+
Southampton Itchen | Green Party | 725
|
|
2497
|
+
|
|
2498
|
+
Southampton Test | Conservative Party | 16006
|
|
2499
|
+
Southampton Test | Labour Party | 27509
|
|
2500
|
+
Southampton Test | Liberal Democrats | 1892
|
|
2501
|
+
Southampton Test | Small or local party, or independent candidate | 816
|
|
2502
|
+
Southampton Test | All other candidates | 680
|
|
2503
|
+
|
|
2504
|
+
Southend West | Conservative Party | 26046
|
|
2505
|
+
Southend West | Labour Party | 16046
|
|
2506
|
+
Southend West | Liberal Democrats | 2110
|
|
2507
|
+
Southend West | UK Independence Party | 1666
|
|
2508
|
+
Southend West | Green Party | 831
|
|
2509
|
+
Southend West | All other candidates | 492
|
|
2510
|
+
|
|
2511
|
+
Southport | Conservative Party | 18541
|
|
2512
|
+
Southport | Labour Party | 15627
|
|
2513
|
+
Southport | Liberal Democrats | 12661
|
|
2514
|
+
Southport | UK Independence Party | 1127
|
|
2515
|
+
|
|
2516
|
+
Spelthorne | Conservative Party | 28692
|
|
2517
|
+
Spelthorne | Labour Party | 15267
|
|
2518
|
+
Spelthorne | Liberal Democrats | 2755
|
|
2519
|
+
Spelthorne | UK Independence Party | 2296
|
|
2520
|
+
Spelthorne | Green Party | 1105
|
|
2521
|
+
|
|
2522
|
+
St Albans | Conservative Party | 24571
|
|
2523
|
+
St Albans | Labour Party | 13137
|
|
2524
|
+
St Albans | Liberal Democrats | 18462
|
|
2525
|
+
St Albans | Green Party | 828
|
|
2526
|
+
|
|
2527
|
+
St Austell and Newquay | Conservative Party | 26856
|
|
2528
|
+
St Austell and Newquay | Labour Party | 15714
|
|
2529
|
+
St Austell and Newquay | Liberal Democrats | 11642
|
|
2530
|
+
|
|
2531
|
+
St Helens North | Conservative Party | 13606
|
|
2532
|
+
St Helens North | Labour Party | 32012
|
|
2533
|
+
St Helens North | Liberal Democrats | 1287
|
|
2534
|
+
St Helens North | UK Independence Party | 2097
|
|
2535
|
+
St Helens North | Green Party | 1220
|
|
2536
|
+
|
|
2537
|
+
St Helens South and Whiston | Conservative Party | 11536
|
|
2538
|
+
St Helens South and Whiston | Labour Party | 35879
|
|
2539
|
+
St Helens South and Whiston | Liberal Democrats | 2101
|
|
2540
|
+
St Helens South and Whiston | UK Independence Party | 1953
|
|
2541
|
+
St Helens South and Whiston | Green Party | 1417
|
|
2542
|
+
|
|
2543
|
+
St Ives | Conservative Party | 22120
|
|
2544
|
+
St Ives | Labour Party | 7298
|
|
2545
|
+
St Ives | Liberal Democrats | 21808
|
|
2546
|
+
|
|
2547
|
+
Stafford | Conservative Party | 28424
|
|
2548
|
+
Stafford | Labour Party | 20695
|
|
2549
|
+
Stafford | Liberal Democrats | 1540
|
|
2550
|
+
Stafford | Green Party | 1265
|
|
2551
|
+
|
|
2552
|
+
Staffordshire Moorlands | Conservative Party | 25963
|
|
2553
|
+
Staffordshire Moorlands | Labour Party | 15133
|
|
2554
|
+
Staffordshire Moorlands | Liberal Democrats | 1494
|
|
2555
|
+
Staffordshire Moorlands | Green Party | 541
|
|
2556
|
+
Staffordshire Moorlands | Small or local party, or independent candidate | 1524
|
|
2557
|
+
|
|
2558
|
+
Staffordshire South | Conservative Party | 35656
|
|
2559
|
+
Staffordshire South | Labour Party | 12923
|
|
2560
|
+
Staffordshire South | Liberal Democrats | 1348
|
|
2561
|
+
Staffordshire South | Green Party | 1182
|
|
2562
|
+
|
|
2563
|
+
Stalybridge and Hyde | Conservative Party | 16193
|
|
2564
|
+
Stalybridge and Hyde | Labour Party | 24277
|
|
2565
|
+
Stalybridge and Hyde | Liberal Democrats | 996
|
|
2566
|
+
Stalybridge and Hyde | Green Party | 991
|
|
2567
|
+
|
|
2568
|
+
Stevenage | Conservative Party | 24798
|
|
2569
|
+
Stevenage | Labour Party | 21414
|
|
2570
|
+
Stevenage | Liberal Democrats | 2032
|
|
2571
|
+
Stevenage | Green Party | 1085
|
|
2572
|
+
|
|
2573
|
+
Stockport | Conservative Party | 11805
|
|
2574
|
+
Stockport | Labour Party | 26282
|
|
2575
|
+
Stockport | Liberal Democrats | 1778
|
|
2576
|
+
Stockport | UK Independence Party | 1088
|
|
2577
|
+
Stockport | Green Party | 591
|
|
2578
|
+
|
|
2579
|
+
Stockton North | Conservative Party | 15589
|
|
2580
|
+
Stockton North | Labour Party | 24304
|
|
2581
|
+
Stockton North | Liberal Democrats | 646
|
|
2582
|
+
Stockton North | UK Independence Party | 1834
|
|
2583
|
+
Stockton North | Green Party | 358
|
|
2584
|
+
|
|
2585
|
+
Stockton South | Conservative Party | 25214
|
|
2586
|
+
Stockton South | Labour Party | 26102
|
|
2587
|
+
Stockton South | Liberal Democrats | 951
|
|
2588
|
+
Stockton South | UK Independence Party | 1186
|
|
2589
|
+
Stockton South | Green Party | 371
|
|
2590
|
+
|
|
2591
|
+
Stoke-on-Trent Central | Conservative Party | 13186
|
|
2592
|
+
Stoke-on-Trent Central | Labour Party | 17083
|
|
2593
|
+
Stoke-on-Trent Central | Liberal Democrats | 680
|
|
2594
|
+
Stoke-on-Trent Central | UK Independence Party | 1608
|
|
2595
|
+
Stoke-on-Trent Central | Green Party | 378
|
|
2596
|
+
Stoke-on-Trent Central | All other candidates | 210
|
|
2597
|
+
|
|
2598
|
+
Stoke-on-Trent North | Conservative Party | 18913
|
|
2599
|
+
Stoke-on-Trent North | Labour Party | 21272
|
|
2600
|
+
Stoke-on-Trent North | Liberal Democrats | 916
|
|
2601
|
+
Stoke-on-Trent North | Green Party | 685
|
|
2602
|
+
|
|
2603
|
+
Stoke-on-Trent South | Conservative Party | 20451
|
|
2604
|
+
Stoke-on-Trent South | Labour Party | 19788
|
|
2605
|
+
Stoke-on-Trent South | Liberal Democrats | 808
|
|
2606
|
+
Stoke-on-Trent South | Green Party | 643
|
|
2607
|
+
|
|
2608
|
+
Stone | Conservative Party | 31614
|
|
2609
|
+
Stone | Labour Party | 14119
|
|
2610
|
+
Stone | Liberal Democrats | 2222
|
|
2611
|
+
Stone | UK Independence Party | 1370
|
|
2612
|
+
Stone | Green Party | 707
|
|
2613
|
+
|
|
2614
|
+
Stourbridge | Conservative Party | 25706
|
|
2615
|
+
Stourbridge | Labour Party | 18052
|
|
2616
|
+
Stourbridge | Liberal Democrats | 1083
|
|
2617
|
+
Stourbridge | UK Independence Party | 1801
|
|
2618
|
+
Stourbridge | Green Party | 493
|
|
2619
|
+
|
|
2620
|
+
Stratford-on-Avon | Conservative Party | 32657
|
|
2621
|
+
Stratford-on-Avon | Labour Party | 11699
|
|
2622
|
+
Stratford-on-Avon | Liberal Democrats | 6357
|
|
2623
|
+
Stratford-on-Avon | Green Party | 1345
|
|
2624
|
+
Stratford-on-Avon | All other candidates | 474
|
|
2625
|
+
|
|
2626
|
+
Streatham | Conservative Party | 11927
|
|
2627
|
+
Streatham | Labour Party | 38212
|
|
2628
|
+
Streatham | Liberal Democrats | 3611
|
|
2629
|
+
Streatham | UK Independence Party | 349
|
|
2630
|
+
Streatham | Green Party | 1696
|
|
2631
|
+
|
|
2632
|
+
Stretford and Urmston | Conservative Party | 13814
|
|
2633
|
+
Stretford and Urmston | Labour Party | 33519
|
|
2634
|
+
Stretford and Urmston | Liberal Democrats | 1001
|
|
2635
|
+
Stretford and Urmston | UK Independence Party | 1094
|
|
2636
|
+
Stretford and Urmston | Green Party | 641
|
|
2637
|
+
Stretford and Urmston | All other candidates | 122
|
|
2638
|
+
|
|
2639
|
+
Stroud | Conservative Party | 29307
|
|
2640
|
+
Stroud | Labour Party | 29994
|
|
2641
|
+
Stroud | Liberal Democrats | 2053
|
|
2642
|
+
Stroud | UK Independence Party | 1039
|
|
2643
|
+
Stroud | Green Party | 1423
|
|
2644
|
+
|
|
2645
|
+
Suffolk Central and Ipswich North | Conservative Party | 33992
|
|
2646
|
+
Suffolk Central and Ipswich North | Labour Party | 16807
|
|
2647
|
+
Suffolk Central and Ipswich North | Liberal Democrats | 2431
|
|
2648
|
+
Suffolk Central and Ipswich North | UK Independence Party | 1635
|
|
2649
|
+
Suffolk Central and Ipswich North | Green Party | 1659
|
|
2650
|
+
|
|
2651
|
+
Suffolk Coastal | Conservative Party | 33713
|
|
2652
|
+
Suffolk Coastal | Labour Party | 17701
|
|
2653
|
+
Suffolk Coastal | Liberal Democrats | 4048
|
|
2654
|
+
Suffolk Coastal | Green Party | 1802
|
|
2655
|
+
Suffolk Coastal | All other candidates | 810
|
|
2656
|
+
|
|
2657
|
+
Suffolk South | Conservative Party | 32829
|
|
2658
|
+
Suffolk South | Labour Party | 15080
|
|
2659
|
+
Suffolk South | Liberal Democrats | 3154
|
|
2660
|
+
Suffolk South | UK Independence Party | 1449
|
|
2661
|
+
Suffolk South | Green Party | 1723
|
|
2662
|
+
|
|
2663
|
+
Suffolk West | Conservative Party | 31649
|
|
2664
|
+
Suffolk West | Labour Party | 14586
|
|
2665
|
+
Suffolk West | Liberal Democrats | 2180
|
|
2666
|
+
Suffolk West | UK Independence Party | 2396
|
|
2667
|
+
Suffolk West | Green Party | 935
|
|
2668
|
+
|
|
2669
|
+
Sunderland Central | Conservative Party | 15059
|
|
2670
|
+
Sunderland Central | Labour Party | 25056
|
|
2671
|
+
Sunderland Central | Liberal Democrats | 1777
|
|
2672
|
+
Sunderland Central | UK Independence Party | 2209
|
|
2673
|
+
Sunderland Central | Green Party | 705
|
|
2674
|
+
Sunderland Central | All other candidates | 305
|
|
2675
|
+
|
|
2676
|
+
Surrey East | Conservative Party | 35310
|
|
2677
|
+
Surrey East | Labour Party | 11396
|
|
2678
|
+
Surrey East | Liberal Democrats | 6197
|
|
2679
|
+
Surrey East | UK Independence Party | 2227
|
|
2680
|
+
Surrey East | Green Party | 1100
|
|
2681
|
+
Surrey East | Small or local party, or independent candidate | 2973
|
|
2682
|
+
|
|
2683
|
+
Surrey Heath | Conservative Party | 37118
|
|
2684
|
+
Surrey Heath | Labour Party | 12175
|
|
2685
|
+
Surrey Heath | Liberal Democrats | 6271
|
|
2686
|
+
Surrey Heath | Green Party | 2258
|
|
2687
|
+
|
|
2688
|
+
Surrey South West | Conservative Party | 33683
|
|
2689
|
+
Surrey South West | Labour Party | 7606
|
|
2690
|
+
Surrey South West | Liberal Democrats | 5967
|
|
2691
|
+
Surrey South West | UK Independence Party | 1083
|
|
2692
|
+
Surrey South West | Small or local party, or independent candidate | 12093
|
|
2693
|
+
|
|
2694
|
+
Sussex Mid | Conservative Party | 35082
|
|
2695
|
+
Sussex Mid | Labour Party | 15409
|
|
2696
|
+
Sussex Mid | Liberal Democrats | 7855
|
|
2697
|
+
Sussex Mid | UK Independence Party | 1251
|
|
2698
|
+
Sussex Mid | Green Party | 1571
|
|
2699
|
+
Sussex Mid | All other candidates | 464
|
|
2700
|
+
|
|
2701
|
+
Sutton and Cheam | Conservative Party | 26567
|
|
2702
|
+
Sutton and Cheam | Labour Party | 10663
|
|
2703
|
+
Sutton and Cheam | Liberal Democrats | 13869
|
|
2704
|
+
Sutton and Cheam | Green Party | 871
|
|
2705
|
+
|
|
2706
|
+
Sutton Coldfield | Conservative Party | 32224
|
|
2707
|
+
Sutton Coldfield | Labour Party | 16885
|
|
2708
|
+
Sutton Coldfield | Liberal Democrats | 2302
|
|
2709
|
+
Sutton Coldfield | Green Party | 965
|
|
2710
|
+
Sutton Coldfield | All other candidates | 482
|
|
2711
|
+
|
|
2712
|
+
Swindon North | Conservative Party | 29431
|
|
2713
|
+
Swindon North | Labour Party | 21096
|
|
2714
|
+
Swindon North | Liberal Democrats | 1962
|
|
2715
|
+
Swindon North | UK Independence Party | 1564
|
|
2716
|
+
Swindon North | Green Party | 858
|
|
2717
|
+
|
|
2718
|
+
Swindon South | Conservative Party | 24809
|
|
2719
|
+
Swindon South | Labour Party | 22345
|
|
2720
|
+
Swindon South | Liberal Democrats | 2079
|
|
2721
|
+
Swindon South | UK Independence Party | 1291
|
|
2722
|
+
Swindon South | Green Party | 747
|
|
2723
|
+
|
|
2724
|
+
Tamworth | Conservative Party | 28748
|
|
2725
|
+
Tamworth | Labour Party | 16401
|
|
2726
|
+
Tamworth | Liberal Democrats | 1961
|
|
2727
|
+
|
|
2728
|
+
Tatton | Conservative Party | 28764
|
|
2729
|
+
Tatton | Labour Party | 13977
|
|
2730
|
+
Tatton | Liberal Democrats | 4431
|
|
2731
|
+
Tatton | Green Party | 1024
|
|
2732
|
+
Tatton | All other candidates | 920
|
|
2733
|
+
|
|
2734
|
+
Taunton Deane | Conservative Party | 33333
|
|
2735
|
+
Taunton Deane | Labour Party | 9689
|
|
2736
|
+
Taunton Deane | Liberal Democrats | 17446
|
|
2737
|
+
Taunton Deane | UK Independence Party | 1434
|
|
2738
|
+
Taunton Deane | Green Party | 1151
|
|
2739
|
+
|
|
2740
|
+
Telford | Conservative Party | 21777
|
|
2741
|
+
Telford | Labour Party | 21057
|
|
2742
|
+
Telford | Liberal Democrats | 954
|
|
2743
|
+
Telford | Green Party | 898
|
|
2744
|
+
|
|
2745
|
+
Tewkesbury | Conservative Party | 35448
|
|
2746
|
+
Tewkesbury | Labour Party | 12874
|
|
2747
|
+
Tewkesbury | Liberal Democrats | 7981
|
|
2748
|
+
Tewkesbury | UK Independence Party | 1205
|
|
2749
|
+
Tewkesbury | Green Party | 1576
|
|
2750
|
+
|
|
2751
|
+
Thanet North | Conservative Party | 27163
|
|
2752
|
+
Thanet North | Labour Party | 16425
|
|
2753
|
+
Thanet North | Liberal Democrats | 1586
|
|
2754
|
+
Thanet North | UK Independence Party | 2198
|
|
2755
|
+
Thanet North | Green Party | 825
|
|
2756
|
+
Thanet North | All other candidates | 128
|
|
2757
|
+
|
|
2758
|
+
Thanet South | Conservative Party | 25262
|
|
2759
|
+
Thanet South | Labour Party | 18875
|
|
2760
|
+
Thanet South | Liberal Democrats | 1514
|
|
2761
|
+
Thanet South | UK Independence Party | 2997
|
|
2762
|
+
Thanet South | Green Party | 809
|
|
2763
|
+
Thanet South | All other candidates | 296
|
|
2764
|
+
|
|
2765
|
+
Thirsk and Malton | Conservative Party | 33572
|
|
2766
|
+
Thirsk and Malton | Labour Party | 14571
|
|
2767
|
+
Thirsk and Malton | Liberal Democrats | 3859
|
|
2768
|
+
Thirsk and Malton | UK Independence Party | 1532
|
|
2769
|
+
Thirsk and Malton | Green Party | 1100
|
|
2770
|
+
Thirsk and Malton | Small or local party, or independent candidate | 753
|
|
2771
|
+
Thirsk and Malton | All other candidates | 542
|
|
2772
|
+
|
|
2773
|
+
Thornbury and Yate | Conservative Party | 28008
|
|
2774
|
+
Thornbury and Yate | Labour Party | 6112
|
|
2775
|
+
Thornbury and Yate | Liberal Democrats | 15937
|
|
2776
|
+
Thornbury and Yate | Green Party | 633
|
|
2777
|
+
|
|
2778
|
+
Thurrock | Conservative Party | 19880
|
|
2779
|
+
Thurrock | Labour Party | 19535
|
|
2780
|
+
Thurrock | Liberal Democrats | 798
|
|
2781
|
+
Thurrock | UK Independence Party | 10112
|
|
2782
|
+
|
|
2783
|
+
Tiverton and Honiton | Conservative Party | 35471
|
|
2784
|
+
Tiverton and Honiton | Labour Party | 15670
|
|
2785
|
+
Tiverton and Honiton | Liberal Democrats | 4639
|
|
2786
|
+
Tiverton and Honiton | Green Party | 2035
|
|
2787
|
+
|
|
2788
|
+
Tonbridge and Malling | Conservative Party | 36218
|
|
2789
|
+
Tonbridge and Malling | Labour Party | 12710
|
|
2790
|
+
Tonbridge and Malling | Liberal Democrats | 3787
|
|
2791
|
+
Tonbridge and Malling | UK Independence Party | 1857
|
|
2792
|
+
Tonbridge and Malling | Green Party | 2335
|
|
2793
|
+
|
|
2794
|
+
Tooting | Conservative Party | 19236
|
|
2795
|
+
Tooting | Labour Party | 34694
|
|
2796
|
+
Tooting | Liberal Democrats | 3057
|
|
2797
|
+
Tooting | UK Independence Party | 339
|
|
2798
|
+
Tooting | Green Party | 845
|
|
2799
|
+
|
|
2800
|
+
Torbay | Conservative Party | 27141
|
|
2801
|
+
Torbay | Labour Party | 9310
|
|
2802
|
+
Torbay | Liberal Democrats | 12858
|
|
2803
|
+
Torbay | UK Independence Party | 1213
|
|
2804
|
+
Torbay | Green Party | 652
|
|
2805
|
+
|
|
2806
|
+
Totnes | Conservative Party | 26972
|
|
2807
|
+
Totnes | Labour Party | 13495
|
|
2808
|
+
Totnes | Liberal Democrats | 6466
|
|
2809
|
+
Totnes | UK Independence Party | 1240
|
|
2810
|
+
Totnes | Green Party | 2097
|
|
2811
|
+
|
|
2812
|
+
Tottenham | Conservative Party | 5665
|
|
2813
|
+
Tottenham | Labour Party | 40249
|
|
2814
|
+
Tottenham | Liberal Democrats | 1687
|
|
2815
|
+
Tottenham | UK Independence Party | 462
|
|
2816
|
+
Tottenham | Green Party | 1276
|
|
2817
|
+
|
|
2818
|
+
Truro and Falmouth | Conservative Party | 25123
|
|
2819
|
+
Truro and Falmouth | Labour Party | 21331
|
|
2820
|
+
Truro and Falmouth | Liberal Democrats | 8465
|
|
2821
|
+
Truro and Falmouth | UK Independence Party | 897
|
|
2822
|
+
Truro and Falmouth | Green Party | 831
|
|
2823
|
+
|
|
2824
|
+
Tunbridge Wells | Conservative Party | 30856
|
|
2825
|
+
Tunbridge Wells | Labour Party | 14391
|
|
2826
|
+
Tunbridge Wells | Liberal Democrats | 5355
|
|
2827
|
+
Tunbridge Wells | UK Independence Party | 1464
|
|
2828
|
+
Tunbridge Wells | Green Party | 1441
|
|
2829
|
+
Tunbridge Wells | All other candidates | 702
|
|
2830
|
+
|
|
2831
|
+
Twickenham | Conservative Party | 25207
|
|
2832
|
+
Twickenham | Labour Party | 6114
|
|
2833
|
+
Twickenham | Liberal Democrats | 34969
|
|
2834
|
+
|
|
2835
|
+
Tynemouth | Conservative Party | 20729
|
|
2836
|
+
Tynemouth | Labour Party | 32395
|
|
2837
|
+
Tynemouth | Liberal Democrats | 1724
|
|
2838
|
+
Tynemouth | UK Independence Party | 1257
|
|
2839
|
+
Tynemouth | Green Party | 629
|
|
2840
|
+
Tynemouth | All other candidates | 124
|
|
2841
|
+
|
|
2842
|
+
Tyneside North | Conservative Party | 14172
|
|
2843
|
+
Tyneside North | Labour Party | 33456
|
|
2844
|
+
Tyneside North | Liberal Democrats | 1494
|
|
2845
|
+
Tyneside North | UK Independence Party | 2101
|
|
2846
|
+
Tyneside North | Green Party | 669
|
|
2847
|
+
|
|
2848
|
+
Uxbridge and South Ruislip | Conservative Party | 23716
|
|
2849
|
+
Uxbridge and South Ruislip | Labour Party | 18682
|
|
2850
|
+
Uxbridge and South Ruislip | Liberal Democrats | 1835
|
|
2851
|
+
Uxbridge and South Ruislip | UK Independence Party | 1577
|
|
2852
|
+
Uxbridge and South Ruislip | Green Party | 884
|
|
2853
|
+
|
|
2854
|
+
Vauxhall | Conservative Party | 10277
|
|
2855
|
+
Vauxhall | Labour Party | 31576
|
|
2856
|
+
Vauxhall | Liberal Democrats | 11326
|
|
2857
|
+
Vauxhall | Green Party | 1152
|
|
2858
|
+
Vauxhall | All other candidates | 711
|
|
2859
|
+
|
|
2860
|
+
Wakefield | Conservative Party | 20811
|
|
2861
|
+
Wakefield | Labour Party | 22987
|
|
2862
|
+
Wakefield | Liberal Democrats | 943
|
|
2863
|
+
Wakefield | Small or local party, or independent candidate | 1176
|
|
2864
|
+
Wakefield | All other candidates | 367
|
|
2865
|
+
|
|
2866
|
+
Wallasey | Conservative Party | 11232
|
|
2867
|
+
Wallasey | Labour Party | 34552
|
|
2868
|
+
Wallasey | Liberal Democrats | 772
|
|
2869
|
+
Wallasey | UK Independence Party | 1160
|
|
2870
|
+
Wallasey | Green Party | 637
|
|
2871
|
+
|
|
2872
|
+
Walsall North | Conservative Party | 18919
|
|
2873
|
+
Walsall North | Labour Party | 16318
|
|
2874
|
+
Walsall North | Liberal Democrats | 586
|
|
2875
|
+
Walsall North | UK Independence Party | 2295
|
|
2876
|
+
|
|
2877
|
+
Walsall South | Conservative Party | 16394
|
|
2878
|
+
Walsall South | Labour Party | 25286
|
|
2879
|
+
Walsall South | Liberal Democrats | 587
|
|
2880
|
+
Walsall South | UK Independence Party | 1805
|
|
2881
|
+
|
|
2882
|
+
Walthamstow | Conservative Party | 6776
|
|
2883
|
+
Walthamstow | Labour Party | 38793
|
|
2884
|
+
Walthamstow | Liberal Democrats | 1384
|
|
2885
|
+
Walthamstow | Green Party | 1190
|
|
2886
|
+
|
|
2887
|
+
Wansbeck | Conservative Party | 13903
|
|
2888
|
+
Wansbeck | Labour Party | 24338
|
|
2889
|
+
Wansbeck | Liberal Democrats | 2015
|
|
2890
|
+
Wansbeck | UK Independence Party | 1483
|
|
2891
|
+
Wansbeck | Green Party | 715
|
|
2892
|
+
|
|
2893
|
+
Wantage | Conservative Party | 34459
|
|
2894
|
+
Wantage | Labour Party | 17079
|
|
2895
|
+
Wantage | Liberal Democrats | 9234
|
|
2896
|
+
Wantage | UK Independence Party | 1284
|
|
2897
|
+
Wantage | Green Party | 1546
|
|
2898
|
+
|
|
2899
|
+
Warley | Conservative Party | 10521
|
|
2900
|
+
Warley | Labour Party | 27004
|
|
2901
|
+
Warley | Liberal Democrats | 777
|
|
2902
|
+
Warley | UK Independence Party | 1349
|
|
2903
|
+
Warley | Green Party | 555
|
|
2904
|
+
|
|
2905
|
+
Warrington North | Conservative Party | 17774
|
|
2906
|
+
Warrington North | Labour Party | 27356
|
|
2907
|
+
Warrington North | Liberal Democrats | 1207
|
|
2908
|
+
Warrington North | UK Independence Party | 1561
|
|
2909
|
+
Warrington North | Green Party | 619
|
|
2910
|
+
|
|
2911
|
+
Warrington South | Conservative Party | 27445
|
|
2912
|
+
Warrington South | Labour Party | 29994
|
|
2913
|
+
Warrington South | Liberal Democrats | 3339
|
|
2914
|
+
Warrington South | All other candidates | 1217
|
|
2915
|
+
|
|
2916
|
+
Warwick and Leamington | Conservative Party | 24021
|
|
2917
|
+
Warwick and Leamington | Labour Party | 25227
|
|
2918
|
+
Warwick and Leamington | Liberal Democrats | 2810
|
|
2919
|
+
Warwick and Leamington | UK Independence Party | 799
|
|
2920
|
+
Warwick and Leamington | Green Party | 1198
|
|
2921
|
+
|
|
2922
|
+
Warwickshire North | Conservative Party | 26860
|
|
2923
|
+
Warwickshire North | Labour Party | 18350
|
|
2924
|
+
Warwickshire North | Liberal Democrats | 1028
|
|
2925
|
+
Warwickshire North | Green Party | 940
|
|
2926
|
+
|
|
2927
|
+
Washington and Sunderland West | Conservative Party | 11699
|
|
2928
|
+
Washington and Sunderland West | Labour Party | 24639
|
|
2929
|
+
Washington and Sunderland West | Liberal Democrats | 961
|
|
2930
|
+
Washington and Sunderland West | UK Independence Party | 2761
|
|
2931
|
+
Washington and Sunderland West | Green Party | 514
|
|
2932
|
+
|
|
2933
|
+
Watford | Conservative Party | 26731
|
|
2934
|
+
Watford | Labour Party | 24639
|
|
2935
|
+
Watford | Liberal Democrats | 5335
|
|
2936
|
+
Watford | UK Independence Party | 1184
|
|
2937
|
+
Watford | Green Party | 721
|
|
2938
|
+
|
|
2939
|
+
Waveney | Conservative Party | 28643
|
|
2940
|
+
Waveney | Labour Party | 19428
|
|
2941
|
+
Waveney | Liberal Democrats | 1012
|
|
2942
|
+
Waveney | UK Independence Party | 1933
|
|
2943
|
+
Waveney | Green Party | 1332
|
|
2944
|
+
Waveney | All other candidates | 326
|
|
2945
|
+
|
|
2946
|
+
Wealden | Conservative Party | 37027
|
|
2947
|
+
Wealden | Labour Party | 13399
|
|
2948
|
+
Wealden | Liberal Democrats | 6281
|
|
2949
|
+
Wealden | UK Independence Party | 1798
|
|
2950
|
+
Wealden | Green Party | 1959
|
|
2951
|
+
|
|
2952
|
+
Weaver Vale | Conservative Party | 22138
|
|
2953
|
+
Weaver Vale | Labour Party | 26066
|
|
2954
|
+
Weaver Vale | Liberal Democrats | 1623
|
|
2955
|
+
Weaver Vale | Green Party | 786
|
|
2956
|
+
|
|
2957
|
+
Wellingborough | Conservative Party | 30579
|
|
2958
|
+
Wellingborough | Labour Party | 18119
|
|
2959
|
+
Wellingborough | Liberal Democrats | 1782
|
|
2960
|
+
Wellingborough | UK Independence Party | 1804
|
|
2961
|
+
Wellingborough | Green Party | 956
|
|
2962
|
+
|
|
2963
|
+
Wells | Conservative Party | 30488
|
|
2964
|
+
Wells | Labour Party | 7129
|
|
2965
|
+
Wells | Liberal Democrats | 22906
|
|
2966
|
+
Wells | All other candidates | 320
|
|
2967
|
+
|
|
2968
|
+
Welwyn Hatfield | Conservative Party | 26374
|
|
2969
|
+
Welwyn Hatfield | Labour Party | 19005
|
|
2970
|
+
Welwyn Hatfield | Liberal Democrats | 3836
|
|
2971
|
+
Welwyn Hatfield | UK Independence Party | 1441
|
|
2972
|
+
Welwyn Hatfield | Green Party | 835
|
|
2973
|
+
Welwyn Hatfield | All other candidates | 178
|
|
2974
|
+
|
|
2975
|
+
Wentworth and Dearne | Conservative Party | 13744
|
|
2976
|
+
Wentworth and Dearne | Labour Party | 28547
|
|
2977
|
+
Wentworth and Dearne | Liberal Democrats | 1656
|
|
2978
|
+
|
|
2979
|
+
West Bromwich East | Conservative Party | 14951
|
|
2980
|
+
West Bromwich East | Labour Party | 22664
|
|
2981
|
+
West Bromwich East | Liberal Democrats | 625
|
|
2982
|
+
West Bromwich East | Green Party | 533
|
|
2983
|
+
West Bromwich East | All other candidates | 325
|
|
2984
|
+
|
|
2985
|
+
West Bromwich West | Conservative Party | 14329
|
|
2986
|
+
West Bromwich West | Labour Party | 18789
|
|
2987
|
+
West Bromwich West | Liberal Democrats | 333
|
|
2988
|
+
West Bromwich West | UK Independence Party | 2320
|
|
2989
|
+
West Bromwich West | Green Party | 323
|
|
2990
|
+
|
|
2991
|
+
West Ham | Conservative Party | 9837
|
|
2992
|
+
West Ham | Labour Party | 46591
|
|
2993
|
+
West Ham | Liberal Democrats | 1836
|
|
2994
|
+
West Ham | UK Independence Party | 1134
|
|
2995
|
+
West Ham | Green Party | 957
|
|
2996
|
+
West Ham | All other candidates | 353
|
|
2997
|
+
|
|
2998
|
+
Westminster North | Conservative Party | 14422
|
|
2999
|
+
Westminster North | Labour Party | 25934
|
|
3000
|
+
Westminster North | Liberal Democrats | 2253
|
|
3001
|
+
Westminster North | Green Party | 595
|
|
3002
|
+
Westminster North | All other candidates | 91
|
|
3003
|
+
|
|
3004
|
+
Westmorland and Lonsdale | Conservative Party | 22909
|
|
3005
|
+
Westmorland and Lonsdale | Labour Party | 4783
|
|
3006
|
+
Westmorland and Lonsdale | Liberal Democrats | 23686
|
|
3007
|
+
Westmorland and Lonsdale | All other candidates | 309
|
|
3008
|
+
|
|
3009
|
+
Weston-Super-Mare | Conservative Party | 29982
|
|
3010
|
+
Weston-Super-Mare | Labour Party | 18438
|
|
3011
|
+
Weston-Super-Mare | Liberal Democrats | 5175
|
|
3012
|
+
Weston-Super-Mare | UK Independence Party | 1932
|
|
3013
|
+
Weston-Super-Mare | Green Party | 888
|
|
3014
|
+
|
|
3015
|
+
Wigan | Conservative Party | 13548
|
|
3016
|
+
Wigan | Labour Party | 29575
|
|
3017
|
+
Wigan | Liberal Democrats | 916
|
|
3018
|
+
Wigan | UK Independence Party | 2750
|
|
3019
|
+
Wigan | Green Party | 753
|
|
3020
|
+
|
|
3021
|
+
Wiltshire North | Conservative Party | 32398
|
|
3022
|
+
Wiltshire North | Labour Party | 9399
|
|
3023
|
+
Wiltshire North | Liberal Democrats | 9521
|
|
3024
|
+
Wiltshire North | UK Independence Party | 871
|
|
3025
|
+
Wiltshire North | Green Party | 1141
|
|
3026
|
+
Wiltshire North | All other candidates | 376
|
|
3027
|
+
|
|
3028
|
+
Wiltshire South West | Conservative Party | 32841
|
|
3029
|
+
Wiltshire South West | Labour Party | 14515
|
|
3030
|
+
Wiltshire South West | Liberal Democrats | 5360
|
|
3031
|
+
Wiltshire South West | Green Party | 1445
|
|
3032
|
+
Wiltshire South West | All other candidates | 590
|
|
3033
|
+
|
|
3034
|
+
Wimbledon | Conservative Party | 23946
|
|
3035
|
+
Wimbledon | Labour Party | 18324
|
|
3036
|
+
Wimbledon | Liberal Democrats | 7472
|
|
3037
|
+
Wimbledon | UK Independence Party | 553
|
|
3038
|
+
Wimbledon | Green Party | 1231
|
|
3039
|
+
|
|
3040
|
+
Winchester | Conservative Party | 29729
|
|
3041
|
+
Winchester | Labour Party | 6007
|
|
3042
|
+
Winchester | Liberal Democrats | 19730
|
|
3043
|
+
Winchester | UK Independence Party | 695
|
|
3044
|
+
Winchester | Green Party | 846
|
|
3045
|
+
Winchester | All other candidates | 149
|
|
3046
|
+
|
|
3047
|
+
Windsor | Conservative Party | 34718
|
|
3048
|
+
Windsor | Labour Party | 12334
|
|
3049
|
+
Windsor | Liberal Democrats | 5434
|
|
3050
|
+
Windsor | Green Party | 1435
|
|
3051
|
+
|
|
3052
|
+
Wirral South | Conservative Party | 17548
|
|
3053
|
+
Wirral South | Labour Party | 25871
|
|
3054
|
+
Wirral South | Liberal Democrats | 1322
|
|
3055
|
+
Wirral South | Green Party | 454
|
|
3056
|
+
|
|
3057
|
+
Wirral West | Conservative Party | 18501
|
|
3058
|
+
Wirral West | Labour Party | 23866
|
|
3059
|
+
Wirral West | Liberal Democrats | 1155
|
|
3060
|
+
Wirral West | Green Party | 429
|
|
3061
|
+
|
|
3062
|
+
Witham | Conservative Party | 31670
|
|
3063
|
+
Witham | Labour Party | 13024
|
|
3064
|
+
Witham | Liberal Democrats | 2715
|
|
3065
|
+
Witham | Green Party | 1832
|
|
3066
|
+
|
|
3067
|
+
Witney | Conservative Party | 33839
|
|
3068
|
+
Witney | Labour Party | 12598
|
|
3069
|
+
Witney | Liberal Democrats | 12457
|
|
3070
|
+
Witney | UK Independence Party | 980
|
|
3071
|
+
Witney | Green Party | 1053
|
|
3072
|
+
|
|
3073
|
+
Woking | Conservative Party | 29903
|
|
3074
|
+
Woking | Labour Party | 13179
|
|
3075
|
+
Woking | Liberal Democrats | 9711
|
|
3076
|
+
Woking | UK Independence Party | 1161
|
|
3077
|
+
Woking | Green Party | 1092
|
|
3078
|
+
Woking | All other candidates | 200
|
|
3079
|
+
|
|
3080
|
+
Wokingham | Conservative Party | 33806
|
|
3081
|
+
Wokingham | Labour Party | 15008
|
|
3082
|
+
Wokingham | Liberal Democrats | 9512
|
|
3083
|
+
Wokingham | Green Party | 1364
|
|
3084
|
+
|
|
3085
|
+
Wolverhampton North East | Conservative Party | 14695
|
|
3086
|
+
Wolverhampton North East | Labour Party | 19282
|
|
3087
|
+
Wolverhampton North East | Liberal Democrats | 570
|
|
3088
|
+
Wolverhampton North East | UK Independence Party | 1479
|
|
3089
|
+
Wolverhampton North East | Green Party | 482
|
|
3090
|
+
|
|
3091
|
+
Wolverhampton South East | Conservative Party | 12623
|
|
3092
|
+
Wolverhampton South East | Labour Party | 21137
|
|
3093
|
+
Wolverhampton South East | Liberal Democrats | 448
|
|
3094
|
+
Wolverhampton South East | UK Independence Party | 1675
|
|
3095
|
+
Wolverhampton South East | Green Party | 421
|
|
3096
|
+
|
|
3097
|
+
Wolverhampton South West | Conservative Party | 18714
|
|
3098
|
+
Wolverhampton South West | Labour Party | 20899
|
|
3099
|
+
Wolverhampton South West | Liberal Democrats | 784
|
|
3100
|
+
Wolverhampton South West | UK Independence Party | 1012
|
|
3101
|
+
Wolverhampton South West | Green Party | 579
|
|
3102
|
+
Wolverhampton South West | All other candidates | 358
|
|
3103
|
+
|
|
3104
|
+
Worcester | Conservative Party | 24731
|
|
3105
|
+
Worcester | Labour Party | 22223
|
|
3106
|
+
Worcester | Liberal Democrats | 1757
|
|
3107
|
+
Worcester | UK Independence Party | 1354
|
|
3108
|
+
Worcester | Green Party | 1211
|
|
3109
|
+
Worcester | All other candidates | 147
|
|
3110
|
+
|
|
3111
|
+
Worcestershire Mid | Conservative Party | 35967
|
|
3112
|
+
Worcestershire Mid | Labour Party | 12641
|
|
3113
|
+
Worcestershire Mid | Liberal Democrats | 3450
|
|
3114
|
+
Worcestershire Mid | UK Independence Party | 1660
|
|
3115
|
+
Worcestershire Mid | Green Party | 1371
|
|
3116
|
+
|
|
3117
|
+
Worcestershire West | Conservative Party | 34703
|
|
3118
|
+
Worcestershire West | Labour Party | 13375
|
|
3119
|
+
Worcestershire West | Liberal Democrats | 5307
|
|
3120
|
+
Worcestershire West | UK Independence Party | 1481
|
|
3121
|
+
Worcestershire West | Green Party | 1605
|
|
3122
|
+
|
|
3123
|
+
Workington | Conservative Party | 17392
|
|
3124
|
+
Workington | Labour Party | 21317
|
|
3125
|
+
Workington | Liberal Democrats | 1133
|
|
3126
|
+
Workington | UK Independence Party | 1556
|
|
3127
|
+
Workington | All other candidates | 278
|
|
3128
|
+
|
|
3129
|
+
Worsley and Eccles South | Conservative Party | 17667
|
|
3130
|
+
Worsley and Eccles South | Labour Party | 26046
|
|
3131
|
+
Worsley and Eccles South | Liberal Democrats | 1087
|
|
3132
|
+
Worsley and Eccles South | Green Party | 842
|
|
3133
|
+
|
|
3134
|
+
Worthing East and Shoreham | Conservative Party | 25988
|
|
3135
|
+
Worthing East and Shoreham | Labour Party | 20882
|
|
3136
|
+
Worthing East and Shoreham | Liberal Democrats | 2523
|
|
3137
|
+
Worthing East and Shoreham | UK Independence Party | 1444
|
|
3138
|
+
Worthing East and Shoreham | Green Party | 1273
|
|
3139
|
+
Worthing East and Shoreham | Small or local party, or independent candidate | 575
|
|
3140
|
+
Worthing East and Shoreham | All other candidates | 432
|
|
3141
|
+
|
|
3142
|
+
Worthing West | Conservative Party | 30181
|
|
3143
|
+
Worthing West | Labour Party | 18091
|
|
3144
|
+
Worthing West | Liberal Democrats | 2982
|
|
3145
|
+
Worthing West | UK Independence Party | 1635
|
|
3146
|
+
Worthing West | Green Party | 1614
|
|
3147
|
+
|
|
3148
|
+
Wrekin, The | Conservative Party | 27451
|
|
3149
|
+
Wrekin, The | Labour Party | 17887
|
|
3150
|
+
Wrekin, The | Liberal Democrats | 1345
|
|
3151
|
+
Wrekin, The | UK Independence Party | 1656
|
|
3152
|
+
Wrekin, The | Green Party | 804
|
|
3153
|
+
Wrekin, The | All other candidates | 380
|
|
3154
|
+
|
|
3155
|
+
Wycombe | Conservative Party | 26766
|
|
3156
|
+
Wycombe | Labour Party | 20188
|
|
3157
|
+
Wycombe | Liberal Democrats | 4147
|
|
3158
|
+
Wycombe | UK Independence Party | 1210
|
|
3159
|
+
Wycombe | Green Party | 1182
|
|
3160
|
+
|
|
3161
|
+
Wyre and Preston North | Conservative Party | 30684
|
|
3162
|
+
Wyre and Preston North | Labour Party | 18438
|
|
3163
|
+
Wyre and Preston North | Liberal Democrats | 2551
|
|
3164
|
+
Wyre and Preston North | Green Party | 973
|
|
3165
|
+
|
|
3166
|
+
Wyre Forest | Conservative Party | 29859
|
|
3167
|
+
Wyre Forest | Labour Party | 16525
|
|
3168
|
+
Wyre Forest | Liberal Democrats | 1943
|
|
3169
|
+
Wyre Forest | UK Independence Party | 1777
|
|
3170
|
+
Wyre Forest | Green Party | 1025
|
|
3171
|
+
|
|
3172
|
+
Wythenshawe and Sale East | Conservative Party | 13581
|
|
3173
|
+
Wythenshawe and Sale East | Labour Party | 28525
|
|
3174
|
+
Wythenshawe and Sale East | Liberal Democrats | 1504
|
|
3175
|
+
Wythenshawe and Sale East | UK Independence Party | 1475
|
|
3176
|
+
Wythenshawe and Sale East | Green Party | 576
|
|
3177
|
+
Wythenshawe and Sale East | All other candidates | 185
|
|
3178
|
+
|
|
3179
|
+
Yeovil | Conservative Party | 32369
|
|
3180
|
+
Yeovil | Labour Party | 7418
|
|
3181
|
+
Yeovil | Liberal Democrats | 17646
|
|
3182
|
+
Yeovil | Green Party | 1052
|
|
3183
|
+
Yeovil | All other candidates | 919
|
|
3184
|
+
|
|
3185
|
+
York Central | Conservative Party | 16019
|
|
3186
|
+
York Central | Labour Party | 34594
|
|
3187
|
+
York Central | Liberal Democrats | 2475
|
|
3188
|
+
|
|
3189
|
+
York Outer | Conservative Party | 29356
|
|
3190
|
+
York Outer | Labour Party | 21067
|
|
3191
|
+
York Outer | Liberal Democrats | 5910
|
|
3192
|
+
York Outer | Green Party | 1094
|
|
3193
|
+
|
|
3194
|
+
Yorkshire East | Conservative Party | 31442
|
|
3195
|
+
Yorkshire East | Labour Party | 16436
|
|
3196
|
+
Yorkshire East | Liberal Democrats | 2134
|
|
3197
|
+
Yorkshire East | UK Independence Party | 1986
|
|
3198
|
+
Yorkshire East | Green Party | 943
|
|
3199
|
+
Yorkshire East | Small or local party, or independent candidate | 1015
|
|
3200
|
+
|
|
3201
|
+
Aberavon | Conservative Party | 5901
|
|
3202
|
+
Aberavon | Labour Party | 22662
|
|
3203
|
+
Aberavon | Liberal Democrats | 599
|
|
3204
|
+
Aberavon | UK Independence Party | 1345
|
|
3205
|
+
Aberavon | Plaid Cymru | 2761
|
|
3206
|
+
|
|
3207
|
+
Aberconwy | Conservative Party | 14337
|
|
3208
|
+
Aberconwy | Labour Party | 13702
|
|
3209
|
+
Aberconwy | Liberal Democrats | 941
|
|
3210
|
+
Aberconwy | Plaid Cymru | 3170
|
|
3211
|
+
|
|
3212
|
+
Alyn and Deeside | Conservative Party | 18080
|
|
3213
|
+
Alyn and Deeside | Labour Party | 23315
|
|
3214
|
+
Alyn and Deeside | Liberal Democrats | 1077
|
|
3215
|
+
Alyn and Deeside | UK Independence Party | 1117
|
|
3216
|
+
Alyn and Deeside | Plaid Cymru | 1171
|
|
3217
|
+
|
|
3218
|
+
Arfon | Conservative Party | 4614
|
|
3219
|
+
Arfon | Labour Party | 11427
|
|
3220
|
+
Arfon | Liberal Democrats | 648
|
|
3221
|
+
Arfon | Plaid Cymru | 11519
|
|
3222
|
+
|
|
3223
|
+
Blaenau Gwent | Conservative Party | 4783
|
|
3224
|
+
Blaenau Gwent | Labour Party | 18787
|
|
3225
|
+
Blaenau Gwent | Liberal Democrats | 295
|
|
3226
|
+
Blaenau Gwent | UK Independence Party | 973
|
|
3227
|
+
Blaenau Gwent | Plaid Cymru | 6880
|
|
3228
|
+
Blaenau Gwent | Small or local party, or independent candidate | 666
|
|
3229
|
+
|
|
3230
|
+
Brecon and Radnorshire | Conservative Party | 20081
|
|
3231
|
+
Brecon and Radnorshire | Labour Party | 7335
|
|
3232
|
+
Brecon and Radnorshire | Liberal Democrats | 12043
|
|
3233
|
+
Brecon and Radnorshire | UK Independence Party | 576
|
|
3234
|
+
Brecon and Radnorshire | Plaid Cymru | 1299
|
|
3235
|
+
|
|
3236
|
+
Bridgend | Conservative Party | 17213
|
|
3237
|
+
Bridgend | Labour Party | 21913
|
|
3238
|
+
Bridgend | Liberal Democrats | 919
|
|
3239
|
+
Bridgend | UK Independence Party | 781
|
|
3240
|
+
Bridgend | Plaid Cymru | 1783
|
|
3241
|
+
Bridgend | All other candidates | 646
|
|
3242
|
+
|
|
3243
|
+
Caerphilly | Conservative Party | 10413
|
|
3244
|
+
Caerphilly | Labour Party | 22491
|
|
3245
|
+
Caerphilly | Liberal Democrats | 725
|
|
3246
|
+
Caerphilly | UK Independence Party | 1259
|
|
3247
|
+
Caerphilly | Green Party | 447
|
|
3248
|
+
Caerphilly | Plaid Cymru | 5962
|
|
3249
|
+
|
|
3250
|
+
Cardiff Central | Conservative Party | 7997
|
|
3251
|
+
Cardiff Central | Labour Party | 25193
|
|
3252
|
+
Cardiff Central | Liberal Democrats | 5415
|
|
3253
|
+
Cardiff Central | UK Independence Party | 343
|
|
3254
|
+
Cardiff Central | Green Party | 420
|
|
3255
|
+
Cardiff Central | Plaid Cymru | 999
|
|
3256
|
+
|
|
3257
|
+
Cardiff North | Conservative Party | 21907
|
|
3258
|
+
Cardiff North | Labour Party | 26081
|
|
3259
|
+
Cardiff North | Liberal Democrats | 1714
|
|
3260
|
+
Cardiff North | UK Independence Party | 582
|
|
3261
|
+
Cardiff North | Plaid Cymru | 1738
|
|
3262
|
+
|
|
3263
|
+
Cardiff South and Penarth | Conservative Party | 15318
|
|
3264
|
+
Cardiff South and Penarth | Labour Party | 30182
|
|
3265
|
+
Cardiff South and Penarth | Liberal Democrats | 1430
|
|
3266
|
+
Cardiff South and Penarth | UK Independence Party | 942
|
|
3267
|
+
Cardiff South and Penarth | Green Party | 532
|
|
3268
|
+
Cardiff South and Penarth | Plaid Cymru | 2162
|
|
3269
|
+
Cardiff South and Penarth | All other candidates | 170
|
|
3270
|
+
|
|
3271
|
+
Cardiff West | Conservative Party | 13874
|
|
3272
|
+
Cardiff West | Labour Party | 26425
|
|
3273
|
+
Cardiff West | Liberal Democrats | 1214
|
|
3274
|
+
Cardiff West | UK Independence Party | 698
|
|
3275
|
+
Cardiff West | Plaid Cymru | 4418
|
|
3276
|
+
|
|
3277
|
+
Carmarthen East and Dinefwr | Conservative Party | 10778
|
|
3278
|
+
Carmarthen East and Dinefwr | Labour Party | 12219
|
|
3279
|
+
Carmarthen East and Dinefwr | Liberal Democrats | 920
|
|
3280
|
+
Carmarthen East and Dinefwr | UK Independence Party | 985
|
|
3281
|
+
Carmarthen East and Dinefwr | Plaid Cymru | 16127
|
|
3282
|
+
|
|
3283
|
+
Carmarthen West and Pembrokeshire South | Conservative Party | 19771
|
|
3284
|
+
Carmarthen West and Pembrokeshire South | Labour Party | 16661
|
|
3285
|
+
Carmarthen West and Pembrokeshire South | Liberal Democrats | 956
|
|
3286
|
+
Carmarthen West and Pembrokeshire South | UK Independence Party | 905
|
|
3287
|
+
Carmarthen West and Pembrokeshire South | Plaid Cymru | 3933
|
|
3288
|
+
|
|
3289
|
+
Ceredigion | Conservative Party | 7307
|
|
3290
|
+
Ceredigion | Labour Party | 8017
|
|
3291
|
+
Ceredigion | Liberal Democrats | 11519
|
|
3292
|
+
Ceredigion | UK Independence Party | 602
|
|
3293
|
+
Ceredigion | Green Party | 542
|
|
3294
|
+
Ceredigion | Plaid Cymru | 11623
|
|
3295
|
+
Ceredigion | All other candidates | 157
|
|
3296
|
+
|
|
3297
|
+
Clwyd South | Conservative Party | 14646
|
|
3298
|
+
Clwyd South | Labour Party | 19002
|
|
3299
|
+
Clwyd South | Liberal Democrats | 731
|
|
3300
|
+
Clwyd South | UK Independence Party | 802
|
|
3301
|
+
Clwyd South | Plaid Cymru | 2293
|
|
3302
|
+
|
|
3303
|
+
Clwyd West | Conservative Party | 19541
|
|
3304
|
+
Clwyd West | Labour Party | 16104
|
|
3305
|
+
Clwyd West | Liberal Democrats | 1091
|
|
3306
|
+
Clwyd West | Plaid Cymru | 3918
|
|
3307
|
+
|
|
3308
|
+
Cynon Valley | Conservative Party | 6166
|
|
3309
|
+
Cynon Valley | Labour Party | 19404
|
|
3310
|
+
Cynon Valley | Liberal Democrats | 585
|
|
3311
|
+
Cynon Valley | UK Independence Party | 1271
|
|
3312
|
+
Cynon Valley | Plaid Cymru | 4376
|
|
3313
|
+
|
|
3314
|
+
Delyn | Conservative Party | 16333
|
|
3315
|
+
Delyn | Labour Party | 20573
|
|
3316
|
+
Delyn | Liberal Democrats | 1031
|
|
3317
|
+
Delyn | Plaid Cymru | 1481
|
|
3318
|
+
|
|
3319
|
+
Dwyfor Meirionnydd | Conservative Party | 8837
|
|
3320
|
+
Dwyfor Meirionnydd | Labour Party | 6273
|
|
3321
|
+
Dwyfor Meirionnydd | Liberal Democrats | 937
|
|
3322
|
+
Dwyfor Meirionnydd | UK Independence Party | 614
|
|
3323
|
+
Dwyfor Meirionnydd | Plaid Cymru | 13687
|
|
3324
|
+
|
|
3325
|
+
Gower | Conservative Party | 19458
|
|
3326
|
+
Gower | Labour Party | 22727
|
|
3327
|
+
Gower | Liberal Democrats | 931
|
|
3328
|
+
Gower | UK Independence Party | 642
|
|
3329
|
+
Gower | Plaid Cymru | 1669
|
|
3330
|
+
Gower | All other candidates | 149
|
|
3331
|
+
|
|
3332
|
+
Islwyn | Conservative Party | 9826
|
|
3333
|
+
Islwyn | Labour Party | 21238
|
|
3334
|
+
Islwyn | Liberal Democrats | 685
|
|
3335
|
+
Islwyn | UK Independence Party | 1605
|
|
3336
|
+
Islwyn | Plaid Cymru | 2739
|
|
3337
|
+
|
|
3338
|
+
Llanelli | Conservative Party | 9544
|
|
3339
|
+
Llanelli | Labour Party | 21568
|
|
3340
|
+
Llanelli | Liberal Democrats | 548
|
|
3341
|
+
Llanelli | UK Independence Party | 1331
|
|
3342
|
+
Llanelli | Plaid Cymru | 7351
|
|
3343
|
+
|
|
3344
|
+
Merthyr Tydfil and Rhymney | Conservative Party | 6073
|
|
3345
|
+
Merthyr Tydfil and Rhymney | Labour Party | 22407
|
|
3346
|
+
Merthyr Tydfil and Rhymney | Liberal Democrats | 841
|
|
3347
|
+
Merthyr Tydfil and Rhymney | UK Independence Party | 1484
|
|
3348
|
+
Merthyr Tydfil and Rhymney | Plaid Cymru | 2740
|
|
3349
|
+
|
|
3350
|
+
Monmouth | Conservative Party | 26411
|
|
3351
|
+
Monmouth | Labour Party | 18205
|
|
3352
|
+
Monmouth | Liberal Democrats | 2064
|
|
3353
|
+
Monmouth | UK Independence Party | 762
|
|
3354
|
+
Monmouth | Green Party | 954
|
|
3355
|
+
Monmouth | Plaid Cymru | 1338
|
|
3356
|
+
|
|
3357
|
+
Montgomeryshire | Conservative Party | 18075
|
|
3358
|
+
Montgomeryshire | Labour Party | 5542
|
|
3359
|
+
Montgomeryshire | Liberal Democrats | 8790
|
|
3360
|
+
Montgomeryshire | Green Party | 524
|
|
3361
|
+
Montgomeryshire | Plaid Cymru | 1960
|
|
3362
|
+
|
|
3363
|
+
Neath | Conservative Party | 9082
|
|
3364
|
+
Neath | Labour Party | 21713
|
|
3365
|
+
Neath | Liberal Democrats | 732
|
|
3366
|
+
Neath | UK Independence Party | 1419
|
|
3367
|
+
Neath | Plaid Cymru | 5339
|
|
3368
|
+
|
|
3369
|
+
Newport East | Conservative Party | 12801
|
|
3370
|
+
Newport East | Labour Party | 20804
|
|
3371
|
+
Newport East | Liberal Democrats | 966
|
|
3372
|
+
Newport East | UK Independence Party | 1180
|
|
3373
|
+
Newport East | Plaid Cymru | 881
|
|
3374
|
+
Newport East | All other candidates | 188
|
|
3375
|
+
|
|
3376
|
+
Newport West | Conservative Party | 17065
|
|
3377
|
+
Newport West | Labour Party | 22723
|
|
3378
|
+
Newport West | Liberal Democrats | 976
|
|
3379
|
+
Newport West | UK Independence Party | 1100
|
|
3380
|
+
Newport West | Green Party | 497
|
|
3381
|
+
Newport West | Plaid Cymru | 1077
|
|
3382
|
+
|
|
3383
|
+
Ogmore | Conservative Party | 9354
|
|
3384
|
+
Ogmore | Labour Party | 23225
|
|
3385
|
+
Ogmore | Liberal Democrats | 594
|
|
3386
|
+
Ogmore | UK Independence Party | 1235
|
|
3387
|
+
Ogmore | Plaid Cymru | 2796
|
|
3388
|
+
|
|
3389
|
+
Pontypridd | Conservative Party | 10655
|
|
3390
|
+
Pontypridd | Labour Party | 22103
|
|
3391
|
+
Pontypridd | Liberal Democrats | 1963
|
|
3392
|
+
Pontypridd | UK Independence Party | 1071
|
|
3393
|
+
Pontypridd | Plaid Cymru | 4102
|
|
3394
|
+
|
|
3395
|
+
Preseli Pembrokeshire | Conservative Party | 18302
|
|
3396
|
+
Preseli Pembrokeshire | Labour Party | 17988
|
|
3397
|
+
Preseli Pembrokeshire | Liberal Democrats | 1106
|
|
3398
|
+
Preseli Pembrokeshire | UK Independence Party | 850
|
|
3399
|
+
Preseli Pembrokeshire | Plaid Cymru | 2711
|
|
3400
|
+
Preseli Pembrokeshire | Small or local party, or independent candidate | 1209
|
|
3401
|
+
Preseli Pembrokeshire | All other candidates | 31
|
|
3402
|
+
|
|
3403
|
+
Rhondda | Conservative Party | 3333
|
|
3404
|
+
Rhondda | Labour Party | 21096
|
|
3405
|
+
Rhondda | Liberal Democrats | 277
|
|
3406
|
+
Rhondda | UK Independence Party | 880
|
|
3407
|
+
Rhondda | Plaid Cymru | 7350
|
|
3408
|
+
|
|
3409
|
+
Swansea East | Conservative Party | 9139
|
|
3410
|
+
Swansea East | Labour Party | 22307
|
|
3411
|
+
Swansea East | Liberal Democrats | 625
|
|
3412
|
+
Swansea East | UK Independence Party | 1040
|
|
3413
|
+
Swansea East | Green Party | 359
|
|
3414
|
+
Swansea East | Plaid Cymru | 1689
|
|
3415
|
+
|
|
3416
|
+
Swansea West | Conservative Party | 11680
|
|
3417
|
+
Swansea West | Labour Party | 22278
|
|
3418
|
+
Swansea West | Liberal Democrats | 1269
|
|
3419
|
+
Swansea West | Green Party | 434
|
|
3420
|
+
Swansea West | Plaid Cymru | 1529
|
|
3421
|
+
Swansea West | All other candidates | 92
|
|
3422
|
+
|
|
3423
|
+
Torfaen | Conservative Party | 11894
|
|
3424
|
+
Torfaen | Labour Party | 22134
|
|
3425
|
+
Torfaen | Liberal Democrats | 852
|
|
3426
|
+
Torfaen | UK Independence Party | 1490
|
|
3427
|
+
Torfaen | Plaid Cymru | 2059
|
|
3428
|
+
|
|
3429
|
+
Vale of Clwyd | Conservative Party | 17044
|
|
3430
|
+
Vale of Clwyd | Labour Party | 19423
|
|
3431
|
+
Vale of Clwyd | Liberal Democrats | 666
|
|
3432
|
+
Vale of Clwyd | Plaid Cymru | 1551
|
|
3433
|
+
|
|
3434
|
+
Vale of Glamorgan | Conservative Party | 25501
|
|
3435
|
+
Vale of Glamorgan | Labour Party | 23311
|
|
3436
|
+
Vale of Glamorgan | Liberal Democrats | 1020
|
|
3437
|
+
Vale of Glamorgan | UK Independence Party | 868
|
|
3438
|
+
Vale of Glamorgan | Green Party | 419
|
|
3439
|
+
Vale of Glamorgan | Plaid Cymru | 2295
|
|
3440
|
+
Vale of Glamorgan | All other candidates | 304
|
|
3441
|
+
|
|
3442
|
+
Wrexham | Conservative Party | 15321
|
|
3443
|
+
Wrexham | Labour Party | 17153
|
|
3444
|
+
Wrexham | Liberal Democrats | 865
|
|
3445
|
+
Wrexham | Plaid Cymru | 1753
|
|
3446
|
+
|
|
3447
|
+
Ynys Mon | Conservative Party | 10384
|
|
3448
|
+
Ynys Mon | Labour Party | 15643
|
|
3449
|
+
Ynys Mon | Liberal Democrats | 479
|
|
3450
|
+
Ynys Mon | UK Independence Party | 624
|
|
3451
|
+
Ynys Mon | Plaid Cymru | 10237
|
|
3452
|
+
|
|
3453
|
+
Aberdeen North | Conservative Party | 8341
|
|
3454
|
+
Aberdeen North | Labour Party | 11031
|
|
3455
|
+
Aberdeen North | Liberal Democrats | 1693
|
|
3456
|
+
Aberdeen North | Scottish National Party | 15170
|
|
3457
|
+
Aberdeen North | All other candidates | 522
|
|
3458
|
+
|
|
3459
|
+
Aberdeen South | Conservative Party | 18746
|
|
3460
|
+
Aberdeen South | Labour Party | 9143
|
|
3461
|
+
Aberdeen South | Liberal Democrats | 2600
|
|
3462
|
+
Aberdeen South | Scottish National Party | 13994
|
|
3463
|
+
|
|
3464
|
+
Aberdeenshire West and Kincardine | Conservative Party | 24704
|
|
3465
|
+
Aberdeenshire West and Kincardine | Labour Party | 5706
|
|
3466
|
+
Aberdeenshire West and Kincardine | Liberal Democrats | 4461
|
|
3467
|
+
Aberdeenshire West and Kincardine | Scottish National Party | 16754
|
|
3468
|
+
|
|
3469
|
+
Airdrie and Shotts | Conservative Party | 8813
|
|
3470
|
+
Airdrie and Shotts | Labour Party | 14096
|
|
3471
|
+
Airdrie and Shotts | Liberal Democrats | 802
|
|
3472
|
+
Airdrie and Shotts | Scottish National Party | 14291
|
|
3473
|
+
|
|
3474
|
+
Angus | Conservative Party | 18148
|
|
3475
|
+
Angus | Labour Party | 5233
|
|
3476
|
+
Angus | Liberal Democrats | 1308
|
|
3477
|
+
Angus | Scottish National Party | 15503
|
|
3478
|
+
|
|
3479
|
+
Argyll and Bute | Conservative Party | 15976
|
|
3480
|
+
Argyll and Bute | Labour Party | 6044
|
|
3481
|
+
Argyll and Bute | Liberal Democrats | 8745
|
|
3482
|
+
Argyll and Bute | Scottish National Party | 17304
|
|
3483
|
+
|
|
3484
|
+
Ayr Carrick and Cumnock | Conservative Party | 18550
|
|
3485
|
+
Ayr Carrick and Cumnock | Labour Party | 11024
|
|
3486
|
+
Ayr Carrick and Cumnock | Liberal Democrats | 872
|
|
3487
|
+
Ayr Carrick and Cumnock | Scottish National Party | 15776
|
|
3488
|
+
|
|
3489
|
+
Ayrshire Central | Conservative Party | 15504
|
|
3490
|
+
Ayrshire Central | Labour Party | 11762
|
|
3491
|
+
Ayrshire Central | Liberal Democrats | 1050
|
|
3492
|
+
Ayrshire Central | Scottish National Party | 16771
|
|
3493
|
+
|
|
3494
|
+
Ayrshire North and Arran | Conservative Party | 14818
|
|
3495
|
+
Ayrshire North and Arran | Labour Party | 13040
|
|
3496
|
+
Ayrshire North and Arran | Liberal Democrats | 1124
|
|
3497
|
+
Ayrshire North and Arran | Scottish National Party | 18451
|
|
3498
|
+
|
|
3499
|
+
Banff and Buchan | Conservative Party | 19976
|
|
3500
|
+
Banff and Buchan | Labour Party | 3936
|
|
3501
|
+
Banff and Buchan | Liberal Democrats | 1448
|
|
3502
|
+
Banff and Buchan | Scottish National Party | 16283
|
|
3503
|
+
|
|
3504
|
+
Berwickshire, Roxburgh and Selkirk | Conservative Party | 28213
|
|
3505
|
+
Berwickshire, Roxburgh and Selkirk | Labour Party | 4519
|
|
3506
|
+
Berwickshire, Roxburgh and Selkirk | Liberal Democrats | 2482
|
|
3507
|
+
Berwickshire, Roxburgh and Selkirk | Scottish National Party | 17153
|
|
3508
|
+
|
|
3509
|
+
Caithness Sutherland and Easter Ross | Conservative Party | 6990
|
|
3510
|
+
Caithness Sutherland and Easter Ross | Labour Party | 3833
|
|
3511
|
+
Caithness Sutherland and Easter Ross | Liberal Democrats | 11061
|
|
3512
|
+
Caithness Sutherland and Easter Ross | Scottish National Party | 9017
|
|
3513
|
+
|
|
3514
|
+
Coatbridge, Chryston and Bellshill | Conservative Party | 7318
|
|
3515
|
+
Coatbridge, Chryston and Bellshill | Labour Party | 19193
|
|
3516
|
+
Coatbridge, Chryston and Bellshill | Liberal Democrats | 922
|
|
3517
|
+
Coatbridge, Chryston and Bellshill | Scottish National Party | 17607
|
|
3518
|
+
|
|
3519
|
+
Cumbernauld, Kilsyth and Kirkintilloch East | Conservative Party | 8010
|
|
3520
|
+
Cumbernauld, Kilsyth and Kirkintilloch East | Labour Party | 14858
|
|
3521
|
+
Cumbernauld, Kilsyth and Kirkintilloch East | Liberal Democrats | 1238
|
|
3522
|
+
Cumbernauld, Kilsyth and Kirkintilloch East | UK Independence Party | 605
|
|
3523
|
+
Cumbernauld, Kilsyth and Kirkintilloch East | Scottish National Party | 19122
|
|
3524
|
+
|
|
3525
|
+
Dumfries and Galloway | Conservative Party | 22344
|
|
3526
|
+
Dumfries and Galloway | Labour Party | 10775
|
|
3527
|
+
Dumfries and Galloway | Liberal Democrats | 1241
|
|
3528
|
+
Dumfries and Galloway | Scottish National Party | 16701
|
|
3529
|
+
Dumfries and Galloway | All other candidates | 538
|
|
3530
|
+
|
|
3531
|
+
Dumfriesshire, Clydesdale and Tweeddale | Conservative Party | 24177
|
|
3532
|
+
Dumfriesshire, Clydesdale and Tweeddale | Labour Party | 8102
|
|
3533
|
+
Dumfriesshire, Clydesdale and Tweeddale | Liberal Democrats | 1949
|
|
3534
|
+
Dumfriesshire, Clydesdale and Tweeddale | Scottish National Party | 14736
|
|
3535
|
+
|
|
3536
|
+
Dunbartonshire East | Conservative Party | 7563
|
|
3537
|
+
Dunbartonshire East | Labour Party | 7531
|
|
3538
|
+
Dunbartonshire East | Liberal Democrats | 21023
|
|
3539
|
+
Dunbartonshire East | Scottish National Party | 15684
|
|
3540
|
+
|
|
3541
|
+
Dunbartonshire West | Conservative Party | 7582
|
|
3542
|
+
Dunbartonshire West | Labour Party | 16602
|
|
3543
|
+
Dunbartonshire West | Liberal Democrats | 1009
|
|
3544
|
+
Dunbartonshire West | Scottish National Party | 18890
|
|
3545
|
+
|
|
3546
|
+
Dundee East | Conservative Party | 11746
|
|
3547
|
+
Dundee East | Labour Party | 11176
|
|
3548
|
+
Dundee East | Liberal Democrats | 1615
|
|
3549
|
+
Dundee East | Scottish National Party | 18391
|
|
3550
|
+
|
|
3551
|
+
Dundee West | Conservative Party | 6257
|
|
3552
|
+
Dundee West | Labour Party | 12783
|
|
3553
|
+
Dundee West | Liberal Democrats | 1189
|
|
3554
|
+
Dundee West | Scottish National Party | 18045
|
|
3555
|
+
Dundee West | All other candidates | 403
|
|
3556
|
+
|
|
3557
|
+
Dunfermline and West Fife | Conservative Party | 12593
|
|
3558
|
+
Dunfermline and West Fife | Labour Party | 17277
|
|
3559
|
+
Dunfermline and West Fife | Liberal Democrats | 3019
|
|
3560
|
+
Dunfermline and West Fife | Scottish National Party | 18121
|
|
3561
|
+
|
|
3562
|
+
East Kilbride, Strathaven and Lesmahagow | Conservative Party | 13704
|
|
3563
|
+
East Kilbride, Strathaven and Lesmahagow | Labour Party | 17157
|
|
3564
|
+
East Kilbride, Strathaven and Lesmahagow | Liberal Democrats | 1590
|
|
3565
|
+
East Kilbride, Strathaven and Lesmahagow | UK Independence Party | 628
|
|
3566
|
+
East Kilbride, Strathaven and Lesmahagow | Scottish National Party | 21023
|
|
3567
|
+
|
|
3568
|
+
East Lothian | Conservative Party | 16540
|
|
3569
|
+
East Lothian | Labour Party | 20158
|
|
3570
|
+
East Lothian | Liberal Democrats | 1738
|
|
3571
|
+
East Lothian | Scottish National Party | 17075
|
|
3572
|
+
East Lothian | All other candidates | 367
|
|
3573
|
+
|
|
3574
|
+
Edinburgh East | Conservative Party | 8081
|
|
3575
|
+
Edinburgh East | Labour Party | 15084
|
|
3576
|
+
Edinburgh East | Liberal Democrats | 1849
|
|
3577
|
+
Edinburgh East | Scottish National Party | 18509
|
|
3578
|
+
|
|
3579
|
+
Edinburgh North and Leith | Conservative Party | 15385
|
|
3580
|
+
Edinburgh North and Leith | Labour Party | 17618
|
|
3581
|
+
Edinburgh North and Leith | Liberal Democrats | 2579
|
|
3582
|
+
Edinburgh North and Leith | Green Party | 1727
|
|
3583
|
+
Edinburgh North and Leith | Scottish National Party | 19243
|
|
3584
|
+
|
|
3585
|
+
Edinburgh South | Conservative Party | 9428
|
|
3586
|
+
Edinburgh South | Labour Party | 26269
|
|
3587
|
+
Edinburgh South | Liberal Democrats | 1388
|
|
3588
|
+
Edinburgh South | Scottish National Party | 10755
|
|
3589
|
+
|
|
3590
|
+
Edinburgh South West | Conservative Party | 16478
|
|
3591
|
+
Edinburgh South West | Labour Party | 13213
|
|
3592
|
+
Edinburgh South West | Liberal Democrats | 2124
|
|
3593
|
+
Edinburgh South West | Scottish National Party | 17575
|
|
3594
|
+
|
|
3595
|
+
Edinburgh West | Conservative Party | 11559
|
|
3596
|
+
Edinburgh West | Labour Party | 7876
|
|
3597
|
+
Edinburgh West | Liberal Democrats | 18108
|
|
3598
|
+
Edinburgh West | Scottish National Party | 15120
|
|
3599
|
+
Edinburgh West | All other candidates | 132
|
|
3600
|
+
|
|
3601
|
+
Falkirk | Conservative Party | 14088
|
|
3602
|
+
Falkirk | Labour Party | 16029
|
|
3603
|
+
Falkirk | Liberal Democrats | 1120
|
|
3604
|
+
Falkirk | UK Independence Party | 712
|
|
3605
|
+
Falkirk | Green Party | 908
|
|
3606
|
+
Falkirk | Scottish National Party | 20952
|
|
3607
|
+
|
|
3608
|
+
Fife North East | Conservative Party | 10088
|
|
3609
|
+
Fife North East | Labour Party | 4026
|
|
3610
|
+
Fife North East | Liberal Democrats | 13741
|
|
3611
|
+
Fife North East | Scottish National Party | 13743
|
|
3612
|
+
Fife North East | All other candidates | 224
|
|
3613
|
+
|
|
3614
|
+
Glasgow Central | Conservative Party | 5014
|
|
3615
|
+
Glasgow Central | Labour Party | 13829
|
|
3616
|
+
Glasgow Central | Liberal Democrats | 1045
|
|
3617
|
+
Glasgow Central | Scottish National Party | 16096
|
|
3618
|
+
|
|
3619
|
+
Glasgow East | Conservative Party | 6816
|
|
3620
|
+
Glasgow East | Labour Party | 13949
|
|
3621
|
+
Glasgow East | Liberal Democrats | 576
|
|
3622
|
+
Glasgow East | UK Independence Party | 504
|
|
3623
|
+
Glasgow East | Scottish National Party | 14024
|
|
3624
|
+
Glasgow East | All other candidates | 306
|
|
3625
|
+
|
|
3626
|
+
Glasgow North | Conservative Party | 4935
|
|
3627
|
+
Glasgow North | Labour Party | 11537
|
|
3628
|
+
Glasgow North | Liberal Democrats | 1153
|
|
3629
|
+
Glasgow North | Green Party | 3251
|
|
3630
|
+
Glasgow North | Scottish National Party | 12597
|
|
3631
|
+
|
|
3632
|
+
Glasgow North East | Conservative Party | 4106
|
|
3633
|
+
Glasgow North East | Labour Party | 13637
|
|
3634
|
+
Glasgow North East | Liberal Democrats | 637
|
|
3635
|
+
Glasgow North East | Scottish National Party | 13395
|
|
3636
|
+
|
|
3637
|
+
Glasgow North West | Conservative Party | 7002
|
|
3638
|
+
Glasgow North West | Labour Party | 13947
|
|
3639
|
+
Glasgow North West | Liberal Democrats | 1387
|
|
3640
|
+
Glasgow North West | Scottish National Party | 16508
|
|
3641
|
+
|
|
3642
|
+
Glasgow South | Conservative Party | 8506
|
|
3643
|
+
Glasgow South | Labour Party | 16285
|
|
3644
|
+
Glasgow South | Liberal Democrats | 1447
|
|
3645
|
+
Glasgow South | Scottish National Party | 18312
|
|
3646
|
+
|
|
3647
|
+
Glasgow South West | Conservative Party | 5524
|
|
3648
|
+
Glasgow South West | Labour Party | 14326
|
|
3649
|
+
Glasgow South West | Liberal Democrats | 661
|
|
3650
|
+
Glasgow South West | UK Independence Party | 481
|
|
3651
|
+
Glasgow South West | Scottish National Party | 14386
|
|
3652
|
+
|
|
3653
|
+
Glenrothes | Conservative Party | 7876
|
|
3654
|
+
Glenrothes | Labour Party | 14024
|
|
3655
|
+
Glenrothes | Liberal Democrats | 1208
|
|
3656
|
+
Glenrothes | Scottish National Party | 17291
|
|
3657
|
+
|
|
3658
|
+
Gordon | Conservative Party | 21861
|
|
3659
|
+
Gordon | Labour Party | 6340
|
|
3660
|
+
Gordon | Liberal Democrats | 6230
|
|
3661
|
+
Gordon | Scottish National Party | 19254
|
|
3662
|
+
|
|
3663
|
+
Inverclyde | Conservative Party | 8399
|
|
3664
|
+
Inverclyde | Labour Party | 14666
|
|
3665
|
+
Inverclyde | Liberal Democrats | 978
|
|
3666
|
+
Inverclyde | Scottish National Party | 15050
|
|
3667
|
+
|
|
3668
|
+
Inverness Nairn Badenoch and Strathspey | Conservative Party | 16118
|
|
3669
|
+
Inverness Nairn Badenoch and Strathspey | Labour Party | 8552
|
|
3670
|
+
Inverness Nairn Badenoch and Strathspey | Liberal Democrats | 6477
|
|
3671
|
+
Inverness Nairn Badenoch and Strathspey | Scottish National Party | 21042
|
|
3672
|
+
Inverness Nairn Badenoch and Strathspey | All other candidates | 612
|
|
3673
|
+
|
|
3674
|
+
Kilmarnock and Loudoun | Conservative Party | 12404
|
|
3675
|
+
Kilmarnock and Loudoun | Labour Party | 13421
|
|
3676
|
+
Kilmarnock and Loudoun | Liberal Democrats | 994
|
|
3677
|
+
Kilmarnock and Loudoun | Scottish National Party | 19690
|
|
3678
|
+
|
|
3679
|
+
Kirkcaldy and Cowdenbeath | Conservative Party | 10762
|
|
3680
|
+
Kirkcaldy and Cowdenbeath | Labour Party | 17016
|
|
3681
|
+
Kirkcaldy and Cowdenbeath | Liberal Democrats | 1118
|
|
3682
|
+
Kirkcaldy and Cowdenbeath | UK Independence Party | 540
|
|
3683
|
+
Kirkcaldy and Cowdenbeath | Scottish National Party | 16757
|
|
3684
|
+
|
|
3685
|
+
Lanark and Hamilton East | Conservative Party | 16178
|
|
3686
|
+
Lanark and Hamilton East | Labour Party | 16084
|
|
3687
|
+
Lanark and Hamilton East | Liberal Democrats | 1214
|
|
3688
|
+
Lanark and Hamilton East | UK Independence Party | 550
|
|
3689
|
+
Lanark and Hamilton East | Scottish National Party | 16444
|
|
3690
|
+
|
|
3691
|
+
Linlithgow and East Falkirk | Conservative Party | 16311
|
|
3692
|
+
Linlithgow and East Falkirk | Labour Party | 17469
|
|
3693
|
+
Linlithgow and East Falkirk | Liberal Democrats | 1926
|
|
3694
|
+
Linlithgow and East Falkirk | Scottish National Party | 20388
|
|
3695
|
+
|
|
3696
|
+
Livingston | Conservative Party | 12799
|
|
3697
|
+
Livingston | Labour Party | 17158
|
|
3698
|
+
Livingston | Liberal Democrats | 1512
|
|
3699
|
+
Livingston | Scottish National Party | 21036
|
|
3700
|
+
|
|
3701
|
+
Midlothian | Conservative Party | 11521
|
|
3702
|
+
Midlothian | Labour Party | 16458
|
|
3703
|
+
Midlothian | Liberal Democrats | 1721
|
|
3704
|
+
Midlothian | Scottish National Party | 15573
|
|
3705
|
+
|
|
3706
|
+
Moray | Conservative Party | 22637
|
|
3707
|
+
Moray | Labour Party | 5208
|
|
3708
|
+
Moray | Liberal Democrats | 1078
|
|
3709
|
+
Moray | Scottish National Party | 18478
|
|
3710
|
+
Moray | All other candidates | 204
|
|
3711
|
+
|
|
3712
|
+
Motherwell and Wishaw | Conservative Party | 8490
|
|
3713
|
+
Motherwell and Wishaw | Labour Party | 15832
|
|
3714
|
+
Motherwell and Wishaw | Liberal Democrats | 920
|
|
3715
|
+
Motherwell and Wishaw | UK Independence Party | 534
|
|
3716
|
+
Motherwell and Wishaw | Scottish National Party | 16150
|
|
3717
|
+
|
|
3718
|
+
Na h-Eileanan An Iar (Western Isles) | Conservative Party | 2441
|
|
3719
|
+
Na h-Eileanan An Iar (Western Isles) | Labour Party | 5006
|
|
3720
|
+
Na h-Eileanan An Iar (Western Isles) | Liberal Democrats | 250
|
|
3721
|
+
Na h-Eileanan An Iar (Western Isles) | Scottish National Party | 6013
|
|
3722
|
+
Na h-Eileanan An Iar (Western Isles) | Small or local party, or independent candidate | 1108
|
|
3723
|
+
|
|
3724
|
+
Ochil and South Perthshire | Conservative Party | 22469
|
|
3725
|
+
Ochil and South Perthshire | Labour Party | 10847
|
|
3726
|
+
Ochil and South Perthshire | Liberal Democrats | 1742
|
|
3727
|
+
Ochil and South Perthshire | Scottish National Party | 19110
|
|
3728
|
+
|
|
3729
|
+
Orkney and Shetland | Conservative Party | 2024
|
|
3730
|
+
Orkney and Shetland | Labour Party | 2664
|
|
3731
|
+
Orkney and Shetland | Liberal Democrats | 11312
|
|
3732
|
+
Orkney and Shetland | UK Independence Party | 283
|
|
3733
|
+
Orkney and Shetland | Scottish National Party | 6749
|
|
3734
|
+
Orkney and Shetland | All other candidates | 245
|
|
3735
|
+
|
|
3736
|
+
Paisley and Renfrewshire North | Conservative Party | 12842
|
|
3737
|
+
Paisley and Renfrewshire North | Labour Party | 14842
|
|
3738
|
+
Paisley and Renfrewshire North | Liberal Democrats | 1476
|
|
3739
|
+
Paisley and Renfrewshire North | Scottish National Party | 17455
|
|
3740
|
+
|
|
3741
|
+
Paisley and Renfrewshire South | Conservative Party | 8122
|
|
3742
|
+
Paisley and Renfrewshire South | Labour Party | 14423
|
|
3743
|
+
Paisley and Renfrewshire South | Liberal Democrats | 1327
|
|
3744
|
+
Paisley and Renfrewshire South | Scottish National Party | 16964
|
|
3745
|
+
Paisley and Renfrewshire South | All other candidates | 876
|
|
3746
|
+
|
|
3747
|
+
Perth and North Perthshire | Conservative Party | 21783
|
|
3748
|
+
Perth and North Perthshire | Labour Party | 5349
|
|
3749
|
+
Perth and North Perthshire | Liberal Democrats | 2589
|
|
3750
|
+
Perth and North Perthshire | Scottish National Party | 21804
|
|
3751
|
+
|
|
3752
|
+
Renfrewshire East | Conservative Party | 21496
|
|
3753
|
+
Renfrewshire East | Labour Party | 14346
|
|
3754
|
+
Renfrewshire East | Liberal Democrats | 1112
|
|
3755
|
+
Renfrewshire East | Scottish National Party | 16784
|
|
3756
|
+
|
|
3757
|
+
Ross Skye and Lochaber | Conservative Party | 9561
|
|
3758
|
+
Ross Skye and Lochaber | Labour Party | 4695
|
|
3759
|
+
Ross Skye and Lochaber | Liberal Democrats | 8042
|
|
3760
|
+
Ross Skye and Lochaber | Scottish National Party | 15480
|
|
3761
|
+
Ross Skye and Lochaber | All other candidates | 676
|
|
3762
|
+
|
|
3763
|
+
Rutherglen and Hamilton West | Conservative Party | 9941
|
|
3764
|
+
Rutherglen and Hamilton West | Labour Party | 19101
|
|
3765
|
+
Rutherglen and Hamilton West | Liberal Democrats | 2158
|
|
3766
|
+
Rutherglen and Hamilton West | UK Independence Party | 465
|
|
3767
|
+
Rutherglen and Hamilton West | Scottish National Party | 18836
|
|
3768
|
+
Rutherglen and Hamilton West | All other candidates | 371
|
|
3769
|
+
|
|
3770
|
+
Stirling | Conservative Party | 18291
|
|
3771
|
+
Stirling | Labour Party | 10902
|
|
3772
|
+
Stirling | Liberal Democrats | 1683
|
|
3773
|
+
Stirling | Scottish National Party | 18143
|
|
3774
|
+
Stirling | All other candidates | 337
|
|
3775
|
+
|
|
3776
|
+
Antrim East | Ulster Unionist Party | 4524
|
|
3777
|
+
Antrim East | Social Democratic & Labour Party | 1278
|
|
3778
|
+
Antrim East | Democratic Unionist Party | 21873
|
|
3779
|
+
Antrim East | Sinn Féin | 3555
|
|
3780
|
+
Antrim East | Small or local party, or independent candidate | 5950
|
|
3781
|
+
Antrim East | All other candidates | 963
|
|
3782
|
+
|
|
3783
|
+
Antrim North | Ulster Unionist Party | 3482
|
|
3784
|
+
Antrim North | Social Democratic & Labour Party | 2574
|
|
3785
|
+
Antrim North | Democratic Unionist Party | 28521
|
|
3786
|
+
Antrim North | Sinn Féin | 7878
|
|
3787
|
+
Antrim North | Small or local party, or independent candidate | 3282
|
|
3788
|
+
Antrim North | All other candidates | 2723
|
|
3789
|
+
|
|
3790
|
+
Antrim South | Ulster Unionist Party | 13300
|
|
3791
|
+
Antrim South | Social Democratic & Labour Party | 2362
|
|
3792
|
+
Antrim South | Democratic Unionist Party | 16508
|
|
3793
|
+
Antrim South | Sinn Féin | 7797
|
|
3794
|
+
Antrim South | Small or local party, or independent candidate | 3203
|
|
3795
|
+
|
|
3796
|
+
Belfast East | Ulster Unionist Party | 1408
|
|
3797
|
+
Belfast East | Social Democratic & Labour Party | 167
|
|
3798
|
+
Belfast East | Democratic Unionist Party | 23917
|
|
3799
|
+
Belfast East | Green Party | 561
|
|
3800
|
+
Belfast East | Sinn Féin | 894
|
|
3801
|
+
Belfast East | Small or local party, or independent candidate | 15443
|
|
3802
|
+
Belfast East | All other candidates | 500
|
|
3803
|
+
|
|
3804
|
+
Belfast North | Social Democratic & Labour Party | 2058
|
|
3805
|
+
Belfast North | Democratic Unionist Party | 21240
|
|
3806
|
+
Belfast North | Green Party | 644
|
|
3807
|
+
Belfast North | Sinn Féin | 19159
|
|
3808
|
+
Belfast North | Small or local party, or independent candidate | 2475
|
|
3809
|
+
Belfast North | All other candidates | 360
|
|
3810
|
+
|
|
3811
|
+
Belfast South | Ulster Unionist Party | 1527
|
|
3812
|
+
Belfast South | Social Democratic & Labour Party | 11303
|
|
3813
|
+
Belfast South | Democratic Unionist Party | 13299
|
|
3814
|
+
Belfast South | Green Party | 2241
|
|
3815
|
+
Belfast South | Sinn Féin | 7143
|
|
3816
|
+
Belfast South | Small or local party, or independent candidate | 7946
|
|
3817
|
+
Belfast South | All other candidates | 246
|
|
3818
|
+
|
|
3819
|
+
Belfast West | Social Democratic & Labour Party | 2860
|
|
3820
|
+
Belfast West | Democratic Unionist Party | 5455
|
|
3821
|
+
Belfast West | Sinn Féin | 27107
|
|
3822
|
+
Belfast West | Small or local party, or independent candidate | 4132
|
|
3823
|
+
Belfast West | All other candidates | 1079
|
|
3824
|
+
|
|
3825
|
+
Down North | Social Democratic & Labour Party | 400
|
|
3826
|
+
Down North | Democratic Unionist Party | 14940
|
|
3827
|
+
Down North | Green Party | 2549
|
|
3828
|
+
Down North | Sinn Féin | 531
|
|
3829
|
+
Down North | Small or local party, or independent candidate | 16148
|
|
3830
|
+
Down North | All other candidates | 978
|
|
3831
|
+
|
|
3832
|
+
Down South | Ulster Unionist Party | 2002
|
|
3833
|
+
Down South | Social Democratic & Labour Party | 17882
|
|
3834
|
+
Down South | Democratic Unionist Party | 8867
|
|
3835
|
+
Down South | Sinn Féin | 20328
|
|
3836
|
+
Down South | Small or local party, or independent candidate | 1814
|
|
3837
|
+
|
|
3838
|
+
Fermanagh and South Tyrone | Ulster Unionist Party | 24355
|
|
3839
|
+
Fermanagh and South Tyrone | Social Democratic & Labour Party | 2587
|
|
3840
|
+
Fermanagh and South Tyrone | Green Party | 423
|
|
3841
|
+
Fermanagh and South Tyrone | Sinn Féin | 25230
|
|
3842
|
+
Fermanagh and South Tyrone | Small or local party, or independent candidate | 886
|
|
3843
|
+
|
|
3844
|
+
Foyle | Social Democratic & Labour Party | 18087
|
|
3845
|
+
Foyle | Democratic Unionist Party | 7398
|
|
3846
|
+
Foyle | Sinn Féin | 18256
|
|
3847
|
+
Foyle | Small or local party, or independent candidate | 1377
|
|
3848
|
+
Foyle | All other candidates | 847
|
|
3849
|
+
|
|
3850
|
+
Lagan Valley | Ulster Unionist Party | 7533
|
|
3851
|
+
Lagan Valley | Social Democratic & Labour Party | 3384
|
|
3852
|
+
Lagan Valley | Democratic Unionist Party | 26762
|
|
3853
|
+
Lagan Valley | Sinn Féin | 1567
|
|
3854
|
+
Lagan Valley | Small or local party, or independent candidate | 4996
|
|
3855
|
+
Lagan Valley | All other candidates | 684
|
|
3856
|
+
|
|
3857
|
+
Londonderry East | Ulster Unionist Party | 3135
|
|
3858
|
+
Londonderry East | Social Democratic & Labour Party | 4423
|
|
3859
|
+
Londonderry East | Democratic Unionist Party | 19723
|
|
3860
|
+
Londonderry East | Sinn Féin | 10881
|
|
3861
|
+
Londonderry East | Small or local party, or independent candidate | 2538
|
|
3862
|
+
Londonderry East | All other candidates | 330
|
|
3863
|
+
|
|
3864
|
+
Newry and Armagh | Ulster Unionist Party | 4425
|
|
3865
|
+
Newry and Armagh | Social Democratic & Labour Party | 9055
|
|
3866
|
+
Newry and Armagh | Democratic Unionist Party | 13177
|
|
3867
|
+
Newry and Armagh | Sinn Féin | 25666
|
|
3868
|
+
Newry and Armagh | Small or local party, or independent candidate | 1256
|
|
3869
|
+
|
|
3870
|
+
Strangford | Ulster Unionist Party | 4419
|
|
3871
|
+
Strangford | Social Democratic & Labour Party | 2404
|
|
3872
|
+
Strangford | Democratic Unionist Party | 24036
|
|
3873
|
+
Strangford | Green Party | 607
|
|
3874
|
+
Strangford | Sinn Féin | 1083
|
|
3875
|
+
Strangford | Small or local party, or independent candidate | 5693
|
|
3876
|
+
Strangford | All other candidates | 507
|
|
3877
|
+
|
|
3878
|
+
Tyrone West | Ulster Unionist Party | 2253
|
|
3879
|
+
Tyrone West | Social Democratic & Labour Party | 5635
|
|
3880
|
+
Tyrone West | Democratic Unionist Party | 11718
|
|
3881
|
+
Tyrone West | Green Party | 427
|
|
3882
|
+
Tyrone West | Sinn Féin | 22060
|
|
3883
|
+
Tyrone West | Small or local party, or independent candidate | 1000
|
|
3884
|
+
Tyrone West | All other candidates | 393
|
|
3885
|
+
|
|
3886
|
+
Ulster Mid | Ulster Unionist Party | 3017
|
|
3887
|
+
Ulster Mid | Social Democratic & Labour Party | 4563
|
|
3888
|
+
Ulster Mid | Democratic Unionist Party | 12565
|
|
3889
|
+
Ulster Mid | Sinn Féin | 25455
|
|
3890
|
+
Ulster Mid | Small or local party, or independent candidate | 1094
|
|
3891
|
+
|
|
3892
|
+
Upper Bann | Ulster Unionist Party | 7900
|
|
3893
|
+
Upper Bann | Social Democratic & Labour Party | 4397
|
|
3894
|
+
Upper Bann | Democratic Unionist Party | 22317
|
|
3895
|
+
Upper Bann | Sinn Féin | 14325
|
|
3896
|
+
Upper Bann | Small or local party, or independent candidate | 2319
|
|
3897
|
+
|
|
3898
|
+
Aldershot | Brexit Party | 8253
|
|
3899
|
+
Aldridge-Brownhills | Brexit Party | 7751
|
|
3900
|
+
Altrincham and Sale West | Brexit Party | 4047
|
|
3901
|
+
Amber Valley | Brexit Party | 7263
|
|
3902
|
+
Arundel and South Downs | Brexit Party | 8154
|
|
3903
|
+
Ashfield | Brexit Party | 10150
|
|
3904
|
+
Ashford | Brexit Party | 10798
|
|
3905
|
+
Ashton under Lyne | Brexit Party | 8468
|
|
3906
|
+
Aylesbury | Brexit Party | 10925
|
|
3907
|
+
Banbury | Brexit Party | 8050
|
|
3908
|
+
Barking | Brexit Party | 9554
|
|
3909
|
+
Barnsley Central | Brexit Party | 7941
|
|
3910
|
+
Barnsley East | Brexit Party | 9045
|
|
3911
|
+
Barrow and Furness | Brexit Party | 5070
|
|
3912
|
+
Basildon and Billericay | Brexit Party | 8538
|
|
3913
|
+
Basildon South and East Thurrock | Brexit Party | 12097
|
|
3914
|
+
Basingstoke | Brexit Party | 8290
|
|
3915
|
+
Bassetlaw | Brexit Party | 7865
|
|
3916
|
+
Bath | Brexit Party | 2922
|
|
3917
|
+
Batley and Spen | Brexit Party | 9080
|
|
3918
|
+
Battersea | Brexit Party | 1586
|
|
3919
|
+
Beaconsfield | Brexit Party | 7310
|
|
3920
|
+
Beckenham | Brexit Party | 6108
|
|
3921
|
+
Bedford | Brexit Party | 4434
|
|
3922
|
+
Bedfordshire Mid | Brexit Party | 8966
|
|
3923
|
+
Bedfordshire North East | Brexit Party | 8579
|
|
3924
|
+
Bedfordshire South West | Brexit Party | 7941
|
|
3925
|
+
Bermondsey and Old Southwark | Brexit Party | 3254
|
|
3926
|
+
Berwick-upon-Tweed | Brexit Party | 4513
|
|
3927
|
+
Bethnal Green and Bow | Brexit Party | 3219
|
|
3928
|
+
Beverley and Holderness | Brexit Party | 8794
|
|
3929
|
+
Bexhill and Battle | Brexit Party | 10170
|
|
3930
|
+
Bexleyheath and Crayford | Brexit Party | 9182
|
|
3931
|
+
Birkenhead | Brexit Party | 3838
|
|
3932
|
+
Birmingham Edgbaston | Brexit Party | 4154
|
|
3933
|
+
Birmingham Erdington | Brexit Party | 6040
|
|
3934
|
+
Birmingham Hall Green | Brexit Party | 2131
|
|
3935
|
+
Birmingham Hodge Hill | Brexit Party | 4651
|
|
3936
|
+
Birmingham Ladywood | Brexit Party | 1805
|
|
3937
|
+
Birmingham Northfield | Brexit Party | 7106
|
|
3938
|
+
Birmingham Perry Barr | Brexit Party | 5032
|
|
3939
|
+
Birmingham Selly Oak | Brexit Party | 5755
|
|
3940
|
+
Birmingham Yardley | Brexit Party | 6637
|
|
3941
|
+
Bishop Auckland | Brexit Party | 7015
|
|
3942
|
+
Blackburn | Brexit Party | 6280
|
|
3943
|
+
Blackley and Broughton | Brexit Party | 6108
|
|
3944
|
+
Blackpool North and Cleveleys | Brexit Party | 5823
|
|
3945
|
+
Blackpool South | Brexit Party | 5613
|
|
3946
|
+
Blaydon | Brexit Party | 7863
|
|
3947
|
+
Blyth Valley | Brexit Party | 8584
|
|
3948
|
+
Bognor Regis and Littlehampton | Brexit Party | 10241
|
|
3949
|
+
Bolsover | Brexit Party | 9228
|
|
3950
|
+
Bolton North East | Brexit Party | 8117
|
|
3951
|
+
Bolton South East | Brexit Party | 9627
|
|
3952
|
+
Bolton West | Brexit Party | 7428
|
|
3953
|
+
Bootle | Brexit Party | 4915
|
|
3954
|
+
Boston and Skegness | Brexit Party | 14645
|
|
3955
|
+
Bosworth | Brexit Party | 9338
|
|
3956
|
+
Bournemouth East | Brexit Party | 7401
|
|
3957
|
+
Bournemouth West | Brexit Party | 7745
|
|
3958
|
+
Bracknell | Brexit Party | 8339
|
|
3959
|
+
Bradford East | Brexit Party | 4103
|
|
3960
|
+
Bradford South | Brexit Party | 9057
|
|
3961
|
+
Bradford West | Brexit Party | 3140
|
|
3962
|
+
Braintree | Brexit Party | 9461
|
|
3963
|
+
Brent Central | Brexit Party | 1850
|
|
3964
|
+
Brent North | Brexit Party | 2024
|
|
3965
|
+
Brentford and Isleworth | Brexit Party | 3203
|
|
3966
|
+
Brentwood and Ongar | Brexit Party | 8724
|
|
3967
|
+
Bridgwater and West Somerset | Brexit Party | 10437
|
|
3968
|
+
Brigg and Goole | Brexit Party | 6694
|
|
3969
|
+
Brighton Kemptown | Brexit Party | 4446
|
|
3970
|
+
Brighton Pavilion | Brexit Party | 2724
|
|
3971
|
+
Bristol East | Brexit Party | 7152
|
|
3972
|
+
Bristol North West | Brexit Party | 4889
|
|
3973
|
+
Bristol South | Brexit Party | 8381
|
|
3974
|
+
Bristol West | Brexit Party | 1940
|
|
3975
|
+
Broadland | Brexit Party | 8881
|
|
3976
|
+
Bromley and Chislehurst | Brexit Party | 6285
|
|
3977
|
+
Bromsgrove | Brexit Party | 8163
|
|
3978
|
+
Broxbourne | Brexit Party | 9074
|
|
3979
|
+
Broxtowe | Brexit Party | 5674
|
|
3980
|
+
Buckingham | Brexit Party | 11675
|
|
3981
|
+
Burnley | Brexit Party | 6864
|
|
3982
|
+
Burton | Brexit Party | 8658
|
|
3983
|
+
Bury North | Brexit Party | 5595
|
|
3984
|
+
Bury South | Brexit Party | 6299
|
|
3985
|
+
Bury St Edmunds | Brexit Party | 8739
|
|
3986
|
+
Calder Valley | Brexit Party | 5950
|
|
3987
|
+
Camberwell and Peckham | Brexit Party | 2413
|
|
3988
|
+
Camborne and Redruth | Brexit Party | 6776
|
|
3989
|
+
Cambridge | Brexit Party | 2668
|
|
3990
|
+
Cambridgeshire North East | Brexit Party | 11650
|
|
3991
|
+
Cambridgeshire North West | Brexit Party | 12275
|
|
3992
|
+
Cambridgeshire South | Brexit Party | 6010
|
|
3993
|
+
Cambridgeshire South East | Brexit Party | 6593
|
|
3994
|
+
Cannock Chase | Brexit Party | 8224
|
|
3995
|
+
Canterbury | Brexit Party | 7289
|
|
3996
|
+
Carlisle | Brexit Party | 5277
|
|
3997
|
+
Carshalton and Wallington | Brexit Party | 7049
|
|
3998
|
+
Castle Point | Brexit Party | 14178
|
|
3999
|
+
Charnwood | Brexit Party | 8330
|
|
4000
|
+
Chatham and Aylesford | Brexit Party | 8581
|
|
4001
|
+
Cheadle | Brexit Party | 4423
|
|
4002
|
+
Chelmsford | Brexit Party | 7652
|
|
4003
|
+
Chelsea and Fulham | Brexit Party | 2039
|
|
4004
|
+
Cheltenham | Brexit Party | 3808
|
|
4005
|
+
Chesham and Amersham | Brexit Party | 7218
|
|
4006
|
+
Chester, City of | Brexit Party | 4148
|
|
4007
|
+
Chesterfield | Brexit Party | 7523
|
|
4008
|
+
Chichester | Brexit Party | 8540
|
|
4009
|
+
Chingford and Woodford Green | Brexit Party | 5644
|
|
4010
|
+
Chippenham | Brexit Party | 5884
|
|
4011
|
+
Chipping Barnet | Brexit Party | 4151
|
|
4012
|
+
Chorley | Brexit Party | 6995
|
|
4013
|
+
Christchurch | Brexit Party | 10663
|
|
4014
|
+
Cities of London and Westminster | Brexit Party | 1894
|
|
4015
|
+
Clacton | Brexit Party | 19642
|
|
4016
|
+
Cleethorpes | Brexit Party | 8356
|
|
4017
|
+
Colchester | Brexit Party | 5870
|
|
4018
|
+
Colne Valley | Brexit Party | 5734
|
|
4019
|
+
Congleton | Brexit Party | 6922
|
|
4020
|
+
Copeland | Brexit Party | 6148
|
|
4021
|
+
Corby | Brexit Party | 7708
|
|
4022
|
+
Cornwall North | Brexit Party | 6121
|
|
4023
|
+
Cornwall South East | Brexit Party | 7698
|
|
4024
|
+
Cotswolds, The | Brexit Party | 6188
|
|
4025
|
+
Coventry North East | Brexit Party | 6278
|
|
4026
|
+
Coventry North West | Brexit Party | 7101
|
|
4027
|
+
Coventry South | Brexit Party | 5709
|
|
4028
|
+
Crawley | Brexit Party | 6979
|
|
4029
|
+
Crewe and Nantwich | Brexit Party | 7252
|
|
4030
|
+
Croydon Central | Brexit Party | 4810
|
|
4031
|
+
Croydon North | Brexit Party | 2899
|
|
4032
|
+
Croydon South | Brexit Party | 6068
|
|
4033
|
+
Dagenham and Rainham | Brexit Party | 12850
|
|
4034
|
+
Darlington | Brexit Party | 5392
|
|
4035
|
+
Dartford | Brexit Party | 10434
|
|
4036
|
+
Daventry | Brexit Party | 8296
|
|
4037
|
+
Denton and Reddish | Brexit Party | 7225
|
|
4038
|
+
Derby North | Brexit Party | 6532
|
|
4039
|
+
Derby South | Brexit Party | 6341
|
|
4040
|
+
Derbyshire Dales | Brexit Party | 5508
|
|
4041
|
+
Derbyshire Mid | Brexit Party | 6497
|
|
4042
|
+
Derbyshire North East | Brexit Party | 7631
|
|
4043
|
+
Derbyshire South | Brexit Party | 8998
|
|
4044
|
+
Devizes | Brexit Party | 7544
|
|
4045
|
+
Devon Central | Brexit Party | 7171
|
|
4046
|
+
Devon East | Brexit Party | 6870
|
|
4047
|
+
Devon North | Brexit Party | 7719
|
|
4048
|
+
Devon South West | Brexit Party | 7306
|
|
4049
|
+
Devon West and Torridge | Brexit Party | 10371
|
|
4050
|
+
Dewsbury | Brexit Party | 6649
|
|
4051
|
+
Don Valley | Brexit Party | 9963
|
|
4052
|
+
Doncaster Central | Brexit Party | 9747
|
|
4053
|
+
Doncaster North | Brexit Party | 8928
|
|
4054
|
+
Dorset Mid and Poole North | Brexit Party | 5663
|
|
4055
|
+
Dorset North | Brexit Party | 9109
|
|
4056
|
+
Dorset South | Brexit Party | 7304
|
|
4057
|
+
Dorset West | Brexit Party | 7055
|
|
4058
|
+
Dover | Brexit Party | 10177
|
|
4059
|
+
Dudley North | Brexit Party | 9113
|
|
4060
|
+
Dudley South | Brexit Party | 7236
|
|
4061
|
+
Dulwich and West Norwood | Brexit Party | 1606
|
|
4062
|
+
Durham North | Brexit Party | 6404
|
|
4063
|
+
Durham North West | Brexit Party | 7265
|
|
4064
|
+
Durham, City of | Brexit Party | 5232
|
|
4065
|
+
Ealing Central and Acton | Brexit Party | 1926
|
|
4066
|
+
Ealing North | Brexit Party | 3922
|
|
4067
|
+
Ealing Southall | Brexit Party | 1769
|
|
4068
|
+
Easington | Brexit Party | 6491
|
|
4069
|
+
East Ham | Brexit Party | 2622
|
|
4070
|
+
Eastbourne | Brexit Party | 6139
|
|
4071
|
+
Eastleigh | Brexit Party | 8783
|
|
4072
|
+
Eddisbury | Brexit Party | 5778
|
|
4073
|
+
Edmonton | Brexit Party | 3366
|
|
4074
|
+
Ellesmere Port and Neston | Brexit Party | 5594
|
|
4075
|
+
Elmet and Rothwell | Brexit Party | 6430
|
|
4076
|
+
Eltham | Brexit Party | 6481
|
|
4077
|
+
Enfield North | Brexit Party | 4133
|
|
4078
|
+
Enfield Southgate | Brexit Party | 2109
|
|
4079
|
+
Epping Forest | Brexit Party | 9049
|
|
4080
|
+
Epsom and Ewell | Brexit Party | 7117
|
|
4081
|
+
Erewash | Brexit Party | 7792
|
|
4082
|
+
Erith and Thamesmead | Brexit Party | 7368
|
|
4083
|
+
Esher and Walton | Brexit Party | 5551
|
|
4084
|
+
Exeter | Brexit Party | 5075
|
|
4085
|
+
Fareham | Brexit Party | 8427
|
|
4086
|
+
Faversham and Kent Mid | Brexit Party | 8243
|
|
4087
|
+
Feltham and Heston | Brexit Party | 6209
|
|
4088
|
+
Filton and Bradley Stoke | Brexit Party | 7261
|
|
4089
|
+
Finchley and Golders Green | Brexit Party | 1732
|
|
4090
|
+
Folkestone and Hythe | Brexit Party | 12526
|
|
4091
|
+
Forest of Dean | Brexit Party | 8792
|
|
4092
|
+
Fylde | Brexit Party | 5569
|
|
4093
|
+
Gainsborough | Brexit Party | 7727
|
|
4094
|
+
Garston and Halewood | Brexit Party | 4482
|
|
4095
|
+
Gateshead | Brexit Party | 6765
|
|
4096
|
+
Gedling | Brexit Party | 6930
|
|
4097
|
+
Gillingham and Rainham | Brexit Party | 9199
|
|
4098
|
+
Gloucester | Brexit Party | 7497
|
|
4099
|
+
Gosport | Brexit Party | 9266
|
|
4100
|
+
Grantham and Stamford | Brexit Party | 9410
|
|
4101
|
+
Gravesham | Brexit Party | 9306
|
|
4102
|
+
Great Grimsby | Brexit Party | 8417
|
|
4103
|
+
Great Yarmouth | Brexit Party | 10270
|
|
4104
|
+
Greenwich and Woolwich | Brexit Party | 3888
|
|
4105
|
+
Guildford | Brexit Party | 4774
|
|
4106
|
+
Hackney North and Stoke Newington | Brexit Party | 1085
|
|
4107
|
+
Hackney South and Shoreditch | Brexit Party | 1818
|
|
4108
|
+
Halesowen and Rowley Regis | Brexit Party | 7280
|
|
4109
|
+
Halifax | Brexit Party | 5621
|
|
4110
|
+
Haltemprice and Howden | Brexit Party | 6781
|
|
4111
|
+
Halton | Brexit Party | 6333
|
|
4112
|
+
Hammersmith | Brexit Party | 2105
|
|
4113
|
+
Hampshire East | Brexit Party | 6187
|
|
4114
|
+
Hampshire North East | Brexit Party | 4732
|
|
4115
|
+
Hampshire North West | Brexit Party | 8109
|
|
4116
|
+
Hampstead and Kilburn | Brexit Party | 1532
|
|
4117
|
+
Harborough | Brexit Party | 7539
|
|
4118
|
+
Harlow | Brexit Party | 7208
|
|
4119
|
+
Harrogate and Knaresborough | Brexit Party | 5681
|
|
4120
|
+
Harrow East | Brexit Party | 2333
|
|
4121
|
+
Harrow West | Brexit Party | 2047
|
|
4122
|
+
Hartlepool | Brexit Party | 11052
|
|
4123
|
+
Harwich and North Essex | Brexit Party | 8464
|
|
4124
|
+
Hastings and Rye | Brexit Party | 6786
|
|
4125
|
+
Havant | Brexit Party | 9239
|
|
4126
|
+
Hayes and Harlington | Brexit Party | 5388
|
|
4127
|
+
Hazel Grove | Brexit Party | 5283
|
|
4128
|
+
Hemel Hempstead | Brexit Party | 7249
|
|
4129
|
+
Hemsworth | Brexit Party | 8565
|
|
4130
|
+
Hendon | Brexit Party | 2595
|
|
4131
|
+
Henley | Brexit Party | 6007
|
|
4132
|
+
Hereford and South Herefordshire | Brexit Party | 7954
|
|
4133
|
+
Herefordshire North | Brexit Party | 6720
|
|
4134
|
+
Hertford and Stortford | Brexit Party | 7534
|
|
4135
|
+
Hertfordshire North East | Brexit Party | 6728
|
|
4136
|
+
Hertfordshire South West | Brexit Party | 6603
|
|
4137
|
+
Hertsmere | Brexit Party | 6383
|
|
4138
|
+
Hexham | Brexit Party | 4302
|
|
4139
|
+
Heywood and Middleton | Brexit Party | 15627
|
|
4140
|
+
High Peak | Brexit Party | 5811
|
|
4141
|
+
Hitchin and Harpenden | Brexit Party | 4917
|
|
4142
|
+
Holborn and St Pancras | Brexit Party | 2740
|
|
4143
|
+
Hornchurch and Upminster | Brexit Party | 13977
|
|
4144
|
+
Hornsey and Wood Green | Brexit Party | 1271
|
|
4145
|
+
Horsham | Brexit Party | 7969
|
|
4146
|
+
Houghton and Sunderland South | Brexit Party | 8280
|
|
4147
|
+
Hove | Brexit Party | 3265
|
|
4148
|
+
Huddersfield | Brexit Party | 5948
|
|
4149
|
+
Hull East | Brexit Party | 7861
|
|
4150
|
+
Hull North | Brexit Party | 5762
|
|
4151
|
+
Hull West and Hessle | Brexit Party | 6313
|
|
4152
|
+
Huntingdon | Brexit Party | 9473
|
|
4153
|
+
Hyndburn | Brexit Party | 9154
|
|
4154
|
+
Ilford North | Brexit Party | 4355
|
|
4155
|
+
Ilford South | Brexit Party | 2705
|
|
4156
|
+
Ipswich | Brexit Party | 5703
|
|
4157
|
+
Isle of Wight | Brexit Party | 14888
|
|
4158
|
+
Islington North | Brexit Party | 1971
|
|
4159
|
+
Islington South and Finsbury | Brexit Party | 3375
|
|
4160
|
+
Jarrow | Brexit Party | 7583
|
|
4161
|
+
Keighley | Brexit Party | 5662
|
|
4162
|
+
Kenilworth and Southam | Brexit Party | 5467
|
|
4163
|
+
Kensington | Brexit Party | 1557
|
|
4164
|
+
Kettering | Brexit Party | 7600
|
|
4165
|
+
Kingston and Surbiton | Brexit Party | 4321
|
|
4166
|
+
Kingswood | Brexit Party | 7133
|
|
4167
|
+
Knowsley | Brexit Party | 4973
|
|
4168
|
+
Lancashire West | Brexit Party | 6058
|
|
4169
|
+
Lancaster and Fleetwood | Brexit Party | 4060
|
|
4170
|
+
Leeds Central | Brexit Party | 7082
|
|
4171
|
+
Leeds East | Brexit Party | 7256
|
|
4172
|
+
Leeds North East | Brexit Party | 3706
|
|
4173
|
+
Leeds North West | Brexit Party | 2997
|
|
4174
|
+
Leeds West | Brexit Party | 7104
|
|
4175
|
+
Leicester East | Brexit Party | 4290
|
|
4176
|
+
Leicester South | Brexit Party | 3832
|
|
4177
|
+
Leicester West | Brexit Party | 5950
|
|
4178
|
+
Leicestershire North West | Brexit Party | 8704
|
|
4179
|
+
Leicestershire South | Brexit Party | 9363
|
|
4180
|
+
Leigh | Brexit Party | 8903
|
|
4181
|
+
Lewes | Brexit Party | 5427
|
|
4182
|
+
Lewisham Deptford | Brexit Party | 2013
|
|
4183
|
+
Lewisham East | Brexit Party | 3886
|
|
4184
|
+
Lewisham West and Penge | Brexit Party | 3764
|
|
4185
|
+
Leyton and Wanstead | Brexit Party | 2341
|
|
4186
|
+
Lichfield | Brexit Party | 8082
|
|
4187
|
+
Lincoln | Brexit Party | 5721
|
|
4188
|
+
Liverpool Riverside | Brexit Party | 2510
|
|
4189
|
+
Liverpool Walton | Brexit Party | 3445
|
|
4190
|
+
Liverpool Wavertree | Brexit Party | 3375
|
|
4191
|
+
Liverpool West Derby | Brexit Party | 3475
|
|
4192
|
+
Loughborough | Brexit Party | 5704
|
|
4193
|
+
Louth and Horncastle | Brexit Party | 10778
|
|
4194
|
+
Ludlow | Brexit Party | 7164
|
|
4195
|
+
Luton North | Brexit Party | 5318
|
|
4196
|
+
Luton South | Brexit Party | 5129
|
|
4197
|
+
Macclesfield | Brexit Party | 6037
|
|
4198
|
+
Maidenhead | Brexit Party | 4539
|
|
4199
|
+
Maidstone and The Weald | Brexit Party | 7930
|
|
4200
|
+
Makerfield | Brexit Party | 10053
|
|
4201
|
+
Maldon | Brexit Party | 7042
|
|
4202
|
+
Manchester Central | Brexit Party | 5033
|
|
4203
|
+
Manchester Gorton | Brexit Party | 3434
|
|
4204
|
+
Manchester Withington | Brexit Party | 2172
|
|
4205
|
+
Mansfield | Brexit Party | 11850
|
|
4206
|
+
Meon Valley | Brexit Party | 7665
|
|
4207
|
+
Meriden | Brexit Party | 8908
|
|
4208
|
+
Middlesbrough | Brexit Party | 6107
|
|
4209
|
+
Middlesbrough South and Cleveland East | Brexit Party | 6935
|
|
4210
|
+
Milton Keynes North | Brexit Party | 6852
|
|
4211
|
+
Milton Keynes South | Brexit Party | 7803
|
|
4212
|
+
Mitcham and Morden | Brexit Party | 4287
|
|
4213
|
+
Mole Valley | Brexit Party | 6181
|
|
4214
|
+
Morecambe and Lunesdale | Brexit Party | 5358
|
|
4215
|
+
Morley and Outwood | Brexit Party | 7951
|
|
4216
|
+
New Forest East | Brexit Party | 8657
|
|
4217
|
+
New Forest West | Brexit Party | 7816
|
|
4218
|
+
Newark | Brexit Party | 6294
|
|
4219
|
+
Newbury | Brexit Party | 6195
|
|
4220
|
+
Newcastle upon Tyne Central | Brexit Party | 5214
|
|
4221
|
+
Newcastle upon Tyne East | Brexit Party | 4910
|
|
4222
|
+
Newcastle upon Tyne North | Brexit Party | 7447
|
|
4223
|
+
Newcastle-under-Lyme | Brexit Party | 7252
|
|
4224
|
+
Newton Abbot | Brexit Party | 6726
|
|
4225
|
+
Norfolk Mid | Brexit Party | 9930
|
|
4226
|
+
Norfolk North | Brexit Party | 8328
|
|
4227
|
+
Norfolk North West | Brexit Party | 8412
|
|
4228
|
+
Norfolk South | Brexit Party | 7847
|
|
4229
|
+
Norfolk South West | Brexit Party | 11654
|
|
4230
|
+
Normanton, Pontefract and Castleford | Brexit Party | 9785
|
|
4231
|
+
Northampton North | Brexit Party | 6354
|
|
4232
|
+
Northampton South | Brexit Party | 7114
|
|
4233
|
+
Northamptonshire South | Brexit Party | 8204
|
|
4234
|
+
Norwich North | Brexit Party | 5986
|
|
4235
|
+
Norwich South | Brexit Party | 4539
|
|
4236
|
+
Nottingham East | Brexit Party | 3501
|
|
4237
|
+
Nottingham North | Brexit Party | 6542
|
|
4238
|
+
Nottingham South | Brexit Party | 4900
|
|
4239
|
+
Nuneaton | Brexit Party | 6582
|
|
4240
|
+
Old Bexley and Sidcup | Brexit Party | 8528
|
|
4241
|
+
Oldham East and Saddleworth | Brexit Party | 8557
|
|
4242
|
+
Oldham West and Royton | Brexit Party | 8892
|
|
4243
|
+
Orpington | Brexit Party | 8173
|
|
4244
|
+
Oxford East | Brexit Party | 3451
|
|
4245
|
+
Oxford West and Abingdon | Brexit Party | 3963
|
|
4246
|
+
Pendle | Brexit Party | 5415
|
|
4247
|
+
Penistone and Stocksbridge | Brexit Party | 10738
|
|
4248
|
+
Penrith and The Border | Brexit Party | 5353
|
|
4249
|
+
Peterborough | Brexit Party | 7485
|
|
4250
|
+
Plymouth Moor View | Brexit Party | 9152
|
|
4251
|
+
Plymouth Sutton and Devonport | Brexit Party | 6731
|
|
4252
|
+
Poole | Brexit Party | 7956
|
|
4253
|
+
Poplar and Limehouse | Brexit Party | 3128
|
|
4254
|
+
Portsmouth North | Brexit Party | 8660
|
|
4255
|
+
Portsmouth South | Brexit Party | 5595
|
|
4256
|
+
Preston | Brexit Party | 5139
|
|
4257
|
+
Pudsey | Brexit Party | 4689
|
|
4258
|
+
Putney | Brexit Party | 1989
|
|
4259
|
+
Rayleigh and Wickford | Brexit Party | 11858
|
|
4260
|
+
Reading East | Brexit Party | 3647
|
|
4261
|
+
Reading West | Brexit Party | 4826
|
|
4262
|
+
Redcar | Brexit Party | 7516
|
|
4263
|
+
Redditch | Brexit Party | 7133
|
|
4264
|
+
Reigate | Brexit Party | 6817
|
|
4265
|
+
Ribble South | Brexit Party | 7377
|
|
4266
|
+
Ribble Valley | Brexit Party | 8250
|
|
4267
|
+
Richmond | Brexit Party | 8194
|
|
4268
|
+
Richmond Park | Brexit Party | 2464
|
|
4269
|
+
Rochdale | Brexit Party | 8519
|
|
4270
|
+
Rochester and Strood | Brexit Party | 16009
|
|
4271
|
+
Rochford and Southend East | Brexit Party | 8948
|
|
4272
|
+
Romford | Brexit Party | 11208
|
|
4273
|
+
Romsey and Southampton North | Brexit Party | 5511
|
|
4274
|
+
Rossendale and Darwen | Brexit Party | 6862
|
|
4275
|
+
Rother Valley | Brexit Party | 13204
|
|
4276
|
+
Rotherham | Brexit Party | 11414
|
|
4277
|
+
Rugby | Brexit Party | 6855
|
|
4278
|
+
Ruislip, Northwood and Pinner | Brexit Party | 5598
|
|
4279
|
+
Runnymede and Weybridge | Brexit Party | 6951
|
|
4280
|
+
Rushcliffe | Brexit Party | 5943
|
|
4281
|
+
Rutland and Melton | Brexit Party | 8678
|
|
4282
|
+
Saffron Walden | Brexit Party | 7935
|
|
4283
|
+
Salford and Eccles | Brexit Party | 7806
|
|
4284
|
+
Salisbury | Brexit Party | 6152
|
|
4285
|
+
Scarborough and Whitby | Brexit Party | 8162
|
|
4286
|
+
Scunthorpe | Brexit Party | 6329
|
|
4287
|
+
Sedgefield | Brexit Party | 6426
|
|
4288
|
+
Sefton Central | Brexit Party | 4879
|
|
4289
|
+
Selby and Ainsty | Brexit Party | 7389
|
|
4290
|
+
Sevenoaks | Brexit Party | 8970
|
|
4291
|
+
Sheffield Brightside and Hillsborough | Brexit Party | 8856
|
|
4292
|
+
Sheffield Central | Brexit Party | 3296
|
|
4293
|
+
Sheffield Hallam | Brexit Party | 3575
|
|
4294
|
+
Sheffield Heeley | Brexit Party | 7315
|
|
4295
|
+
Sheffield South East | Brexit Party | 9128
|
|
4296
|
+
Sherwood | Brexit Party | 7399
|
|
4297
|
+
Shipley | Brexit Party | 4479
|
|
4298
|
+
Shrewsbury and Atcham | Brexit Party | 7813
|
|
4299
|
+
Shropshire North | Brexit Party | 9262
|
|
4300
|
+
Sittingbourne and Sheppey | Brexit Party | 12257
|
|
4301
|
+
Skipton and Ripon | Brexit Party | 7651
|
|
4302
|
+
Sleaford and North Hykeham | Brexit Party | 9716
|
|
4303
|
+
Slough | Brexit Party | 6274
|
|
4304
|
+
Solihull | Brexit Party | 6361
|
|
4305
|
+
Somerset North | Brexit Party | 7669
|
|
4306
|
+
Somerset North East | Brexit Party | 6150
|
|
4307
|
+
Somerton and Frome | Brexit Party | 6439
|
|
4308
|
+
South Holland and The Deepings | Brexit Party | 10736
|
|
4309
|
+
South Shields | Brexit Party | 7975
|
|
4310
|
+
Southampton Itchen | Brexit Party | 6010
|
|
4311
|
+
Southampton Test | Brexit Party | 5566
|
|
4312
|
+
Southend West | Brexit Party | 7803
|
|
4313
|
+
Southport | Brexit Party | 7429
|
|
4314
|
+
Spelthorne | Brexit Party | 10234
|
|
4315
|
+
St Albans | Brexit Party | 4271
|
|
4316
|
+
St Austell and Newquay | Brexit Party | 8503
|
|
4317
|
+
St Helens North | Brexit Party | 6983
|
|
4318
|
+
St Helens South and Whiston | Brexit Party | 6766
|
|
4319
|
+
St Ives | Brexit Party | 5720
|
|
4320
|
+
Stafford | Brexit Party | 6293
|
|
4321
|
+
Staffordshire Moorlands | Brexit Party | 6236
|
|
4322
|
+
Staffordshire South | Brexit Party | 8267
|
|
4323
|
+
Stalybridge and Hyde | Brexit Party | 7720
|
|
4324
|
+
Stevenage | Brexit Party | 6864
|
|
4325
|
+
Stockport | Brexit Party | 5206
|
|
4326
|
+
Stockton North | Brexit Party | 7581
|
|
4327
|
+
Stockton South | Brexit Party | 5480
|
|
4328
|
+
Stoke-on-Trent Central | Brexit Party | 7041
|
|
4329
|
+
Stoke-on-Trent North | Brexit Party | 9542
|
|
4330
|
+
Stoke-on-Trent South | Brexit Party | 8298
|
|
4331
|
+
Stone | Brexit Party | 7620
|
|
4332
|
+
Stourbridge | Brexit Party | 7774
|
|
4333
|
+
Stratford-on-Avon | Brexit Party | 6798
|
|
4334
|
+
Streatham | Brexit Party | 1602
|
|
4335
|
+
Stretford and Urmston | Brexit Party | 5068
|
|
4336
|
+
Stroud | Brexit Party | 4848
|
|
4337
|
+
Suffolk Central and Ipswich North | Brexit Party | 7459
|
|
4338
|
+
Suffolk Coastal | Brexit Party | 8655
|
|
4339
|
+
Suffolk South | Brexit Party | 7897
|
|
4340
|
+
Suffolk West | Brexit Party | 10700
|
|
4341
|
+
Sunderland Central | Brexit Party | 7997
|
|
4342
|
+
Surrey East | Brexit Party | 9553
|
|
4343
|
+
Surrey Heath | Brexit Party | 7778
|
|
4344
|
+
Surrey South West | Brexit Party | 5643
|
|
4345
|
+
Sussex Mid | Brexit Party | 6898
|
|
4346
|
+
Sutton and Cheam | Brexit Party | 5341
|
|
4347
|
+
Sutton Coldfield | Brexit Party | 7489
|
|
4348
|
+
Swindon North | Brexit Party | 8011
|
|
4349
|
+
Swindon South | Brexit Party | 5920
|
|
4350
|
+
Tamworth | Brexit Party | 8727
|
|
4351
|
+
Tatton | Brexit Party | 4871
|
|
4352
|
+
Taunton Deane | Brexit Party | 6921
|
|
4353
|
+
Telford | Brexit Party | 7330
|
|
4354
|
+
Tewkesbury | Brexit Party | 7128
|
|
4355
|
+
Thanet North | Brexit Party | 12097
|
|
4356
|
+
Thanet South | Brexit Party | 16026
|
|
4357
|
+
Thirsk and Malton | Brexit Party | 7805
|
|
4358
|
+
Thornbury and Yate | Brexit Party | 5126
|
|
4359
|
+
Thurrock | Brexit Party | 15718
|
|
4360
|
+
Tiverton and Honiton | Brexit Party | 8857
|
|
4361
|
+
Tonbridge and Malling | Brexit Party | 8153
|
|
4362
|
+
Tooting | Brexit Party | 1537
|
|
4363
|
+
Torbay | Brexit Party | 6540
|
|
4364
|
+
Totnes | Brexit Party | 6656
|
|
4365
|
+
Tottenham | Brexit Party | 1512
|
|
4366
|
+
Truro and Falmouth | Brexit Party | 5967
|
|
4367
|
+
Tunbridge Wells | Brexit Party | 6481
|
|
4368
|
+
Twickenham | Brexit Party | 3069
|
|
4369
|
+
Tynemouth | Brexit Party | 6541
|
|
4370
|
+
Tyneside North | Brexit Party | 7618
|
|
4371
|
+
Uxbridge and South Ruislip | Brexit Party | 6346
|
|
4372
|
+
Vauxhall | Brexit Party | 1385
|
|
4373
|
+
Wakefield | Brexit Party | 7862
|
|
4374
|
+
Wallasey | Brexit Party | 5063
|
|
4375
|
+
Walsall North | Brexit Party | 8122
|
|
4376
|
+
Walsall South | Brexit Party | 6540
|
|
4377
|
+
Walthamstow | Brexit Party | 2507
|
|
4378
|
+
Wansbeck | Brexit Party | 7014
|
|
4379
|
+
Wantage | Brexit Party | 7288
|
|
4380
|
+
Warley | Brexit Party | 6237
|
|
4381
|
+
Warrington North | Brexit Party | 7757
|
|
4382
|
+
Warrington South | Brexit Party | 4909
|
|
4383
|
+
Warwick and Leamington | Brexit Party | 4183
|
|
4384
|
+
Warwickshire North | Brexit Party | 8256
|
|
4385
|
+
Washington and Sunderland West | Brexit Party | 7321
|
|
4386
|
+
Watford | Brexit Party | 5481
|
|
4387
|
+
Waveney | Brexit Party | 7580
|
|
4388
|
+
Wealden | Brexit Party | 9541
|
|
4389
|
+
Weaver Vale | Brexit Party | 4547
|
|
4390
|
+
Wellingborough | Brexit Party | 9868
|
|
4391
|
+
Wells | Brexit Party | 5644
|
|
4392
|
+
Welwyn Hatfield | Brexit Party | 6556
|
|
4393
|
+
Wentworth and Dearne | Brexit Party | 10733
|
|
4394
|
+
West Bromwich East | Brexit Party | 7949
|
|
4395
|
+
West Bromwich West | Brexit Party | 8836
|
|
4396
|
+
West Ham | Brexit Party | 3950
|
|
4397
|
+
Westminster North | Brexit Party | 1489
|
|
4398
|
+
Westmorland and Lonsdale | Brexit Party | 3031
|
|
4399
|
+
Weston-Super-Mare | Brexit Party | 9366
|
|
4400
|
+
Wigan | Brexit Party | 8818
|
|
4401
|
+
Wiltshire North | Brexit Party | 5813
|
|
4402
|
+
Wiltshire South West | Brexit Party | 9030
|
|
4403
|
+
Wimbledon | Brexit Party | 2476
|
|
4404
|
+
Winchester | Brexit Party | 4122
|
|
4405
|
+
Windsor | Brexit Party | 4992
|
|
4406
|
+
Wirral South | Brexit Party | 3737
|
|
4407
|
+
Wirral West | Brexit Party | 2772
|
|
4408
|
+
Witham | Brexit Party | 7569
|
|
4409
|
+
Witney | Brexit Party | 5352
|
|
4410
|
+
Woking | Brexit Party | 5873
|
|
4411
|
+
Wokingham | Brexit Party | 5516
|
|
4412
|
+
Wolverhampton North East | Brexit Party | 6524
|
|
4413
|
+
Wolverhampton South East | Brexit Party | 7061
|
|
4414
|
+
Wolverhampton South West | Brexit Party | 4310
|
|
4415
|
+
Worcester | Brexit Party | 6378
|
|
4416
|
+
Worcestershire Mid | Brexit Party | 9231
|
|
4417
|
+
Worcestershire West | Brexit Party | 7764
|
|
4418
|
+
Workington | Brexit Party | 7538
|
|
4419
|
+
Worsley and Eccles South | Brexit Party | 7688
|
|
4420
|
+
Worthing East and Shoreham | Brexit Party | 8267
|
|
4421
|
+
Worthing West | Brexit Party | 9269
|
|
4422
|
+
Wrekin, The | Brexit Party | 7620
|
|
4423
|
+
Wycombe | Brexit Party | 5198
|
|
4424
|
+
Wyre and Preston North | Brexit Party | 6577
|
|
4425
|
+
Wyre Forest | Brexit Party | 7967
|
|
4426
|
+
Wythenshawe and Sale East | Brexit Party | 6354
|
|
4427
|
+
Yeovil | Brexit Party | 7646
|
|
4428
|
+
York Central | Brexit Party | 4795
|
|
4429
|
+
York Outer | Brexit Party | 5251
|
|
4430
|
+
Yorkshire East | Brexit Party | 8955
|
|
4431
|
+
Aberavon | Brexit Party | 4971
|
|
4432
|
+
Aberconwy | Brexit Party | 3467
|
|
4433
|
+
Alyn and Deeside | Brexit Party | 7260
|
|
4434
|
+
Arfon | Brexit Party | 2277
|
|
4435
|
+
Blaenau Gwent | Brexit Party | 5677
|
|
4436
|
+
Brecon and Radnorshire | Brexit Party | 3338
|
|
4437
|
+
Bridgend | Brexit Party | 5911
|
|
4438
|
+
Caerphilly | Brexit Party | 7791
|
|
4439
|
+
Cardiff Central | Brexit Party | 2499
|
|
4440
|
+
Cardiff North | Brexit Party | 3953
|
|
4441
|
+
Cardiff South and Penarth | Brexit Party | 6423
|
|
4442
|
+
Cardiff West | Brexit Party | 4923
|
|
4443
|
+
Carmarthen East and Dinefwr | Brexit Party | 4363
|
|
4444
|
+
Carmarthen West and Pembrokeshire South | Brexit Party | 4698
|
|
4445
|
+
Ceredigion | Brexit Party | 3829
|
|
4446
|
+
Clwyd South | Brexit Party | 5480
|
|
4447
|
+
Clwyd West | Brexit Party | 4988
|
|
4448
|
+
Cynon Valley | Brexit Party | 4976
|
|
4449
|
+
Delyn | Brexit Party | 6150
|
|
4450
|
+
Dwyfor Meirionnydd | Brexit Party | 3126
|
|
4451
|
+
Gower | Brexit Party | 4773
|
|
4452
|
+
Islwyn | Brexit Party | 6932
|
|
4453
|
+
Llanelli | Brexit Party | 6269
|
|
4454
|
+
Merthyr Tydfil and Rhymney | Brexit Party | 6106
|
|
4455
|
+
Monmouth | Brexit Party | 4942
|
|
4456
|
+
Montgomeryshire | Brexit Party | 3769
|
|
4457
|
+
Neath | Brexit Party | 6094
|
|
4458
|
+
Newport East | Brexit Party | 6466
|
|
4459
|
+
Newport West | Brexit Party | 6134
|
|
4460
|
+
Ogmore | Brexit Party | 5420
|
|
4461
|
+
Pontypridd | Brexit Party | 5085
|
|
4462
|
+
Preseli Pembrokeshire | Brexit Party | 4257
|
|
4463
|
+
Rhondda | Brexit Party | 3998
|
|
4464
|
+
Swansea East | Brexit Party | 5779
|
|
4465
|
+
Swansea West | Brexit Party | 4744
|
|
4466
|
+
Torfaen | Brexit Party | 7203
|
|
4467
|
+
Vale of Clwyd | Brexit Party | 4577
|
|
4468
|
+
Vale of Glamorgan | Brexit Party | 5489
|
|
4469
|
+
Wrexham | Brexit Party | 5072
|
|
4470
|
+
Ynys Mon | Brexit Party | 5121
|
|
4471
|
+
Aberdeen South | Brexit Party | 897
|
|
4472
|
+
Aberdeenshire West and Kincardine | Brexit Party | 1006
|
|
4473
|
+
Airdrie and Shotts | Brexit Party | 1088
|
|
4474
|
+
Angus | Brexit Party | 1355
|
|
4475
|
+
Argyll and Bute | Brexit Party | 1311
|
|
4476
|
+
Ayr Carrick and Cumnock | Brexit Party | 1280
|
|
4477
|
+
Ayrshire North and Arran | Brexit Party | 1296
|
|
4478
|
+
Berwickshire, Roxburgh and Selkirk | Brexit Party | 1316
|
|
4479
|
+
Caithness Sutherland and Easter Ross | Brexit Party | 981
|
|
4480
|
+
Coatbridge, Chryston and Bellshill | Brexit Party | 1049
|
|
4481
|
+
Dumfries and Galloway | Brexit Party | 1301
|
|
4482
|
+
Dumfriesshire, Clydesdale and Tweeddale | Brexit Party | 1472
|
|
4483
|
+
Dunbartonshire East | Brexit Party | 567
|
|
4484
|
+
East Kilbride, Strathaven and Lesmahagow | Brexit Party | 1221
|
|
4485
|
+
East Lothian | Brexit Party | 1178
|
|
4486
|
+
Edinburgh East | Brexit Party | 898
|
|
4487
|
+
Edinburgh North and Leith | Brexit Party | 847
|
|
4488
|
+
Edinburgh South | Brexit Party | 601
|
|
4489
|
+
Edinburgh South West | Brexit Party | 1072
|
|
4490
|
+
Edinburgh West | Brexit Party | 1015
|
|
4491
|
+
Falkirk | Brexit Party | 1829
|
|
4492
|
+
Glasgow Central | Brexit Party | 786
|
|
4493
|
+
Glasgow East | Brexit Party | 1105
|
|
4494
|
+
Glasgow North | Brexit Party | 486
|
|
4495
|
+
Glasgow South West | Brexit Party | 970
|
|
4496
|
+
Gordon | Brexit Party | 1166
|
|
4497
|
+
Inverclyde | Brexit Party | 715
|
|
4498
|
+
Inverness Nairn Badenoch and Strathspey | Brexit Party | 1236
|
|
4499
|
+
Kirkcaldy and Cowdenbeath | Brexit Party | 1237
|
|
4500
|
+
Lanark and Hamilton East | Brexit Party | 1431
|
|
4501
|
+
Linlithgow and East Falkirk | Brexit Party | 1682
|
|
4502
|
+
Livingston | Brexit Party | 1757
|
|
4503
|
+
Midlothian | Brexit Party | 1173
|
|
4504
|
+
Moray | Brexit Party | 1939
|
|
4505
|
+
Motherwell and Wishaw | Brexit Party | 1289
|
|
4506
|
+
Ochil and South Perthshire | Brexit Party | 1331
|
|
4507
|
+
Orkney and Shetland | Brexit Party | 1082
|
|
4508
|
+
Perth and North Perthshire | Brexit Party | 1110
|
|
4509
|
+
Renfrewshire East | Brexit Party | 888
|
|
4510
|
+
Ross Skye and Lochaber | Brexit Party | 814
|
|
4511
|
+
Rutherglen and Hamilton West | Brexit Party | 1301
|
|
4512
|
+
Antrim East | Brexit Party | 3660
|
|
4513
|
+
Antrim North | Brexit Party | 1341
|
|
4514
|
+
Belfast South | Brexit Party | 1900
|
|
4515
|
+
Belfast West | Brexit Party | 765
|
|
4516
|
+
Down North | Brexit Party | 1482
|
|
4517
|
+
Down South | Brexit Party | 3044
|
|
4518
|
+
Foyle | Brexit Party | 832
|
|
4519
|
+
Lagan Valley | Brexit Party | 2200
|
|
4520
|
+
Strangford | Brexit Party | 2237
|
|
4521
|
+
Ulster Mid | Brexit Party | 863
|