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